/* Modern Filter Dropdowns */
.select-wrapper {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.select-box {
    position: relative;
    min-width: 200px;
}

.select-box select {
    width: 100%;
    padding: 12px 40px 12px 20px;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    background-color: #4a4a4a;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    transition: all 0.3s ease;
    outline: none;
}

.select-box select:hover {
    background-color: #5a5a5a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.select-box select:focus {
    background-color: #333333;
    box-shadow: 0 0 0 3px rgba(74, 74, 74, 0.3);
}

/* Custom dropdown arrow */
.select-box::after {
    content: '▼';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-size: 12px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-box:hover::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Option styling */
.select-box select option {
    background-color: #4a4a4a;
    color: #ffffff;
    padding: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .select-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .select-box {
        width: 100%;
        max-width: 300px;
    }
}