.experience-filter {
    width: 100%;
    max-width: 334px;
}

.experience-filter-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.experience-select {
    width: 100%;
    max-width: 334px;
    padding: 10px 36px 10px 12px;
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2317BAB2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.experience-select option.placeholder-option {
    color: #808BA2;
}

.experience-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2317BAB2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='18 15 12 9 6 15'%3E%3C/polyline%3E%3C/svg%3E");
}

.experience-select:hover {
    border-color: #17BAB2;
}

.experience-select:focus {
    outline: none;
    border-color: #17BAB2;
    box-shadow: 0 0 0 2px rgba(23,186,178,0.1);
}

.experience-select::-ms-expand {
    display: none;
}

@media (max-width: 768px) {
    .experience-filter {
        max-width: 100%;
    }
    
    .experience-select {
        max-width: 100%;
        padding: 8px 32px 8px 10px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .experience-select {
        font-size: 13px;
    }
}