.search-service-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 10px;
    margin: 0px 0 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    font-family: Arial, sans-serif;
    position: relative;
}

.search-service-title {
    color: #1a2433;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 20px;
}

.search-form {
    position: relative;
}

.search-input-container {
    display: flex;
    align-items: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 10px 10px;
    margin-bottom: 20px;
    border: 1px solid #e1e4e8;
    transition: all 0.3s ease;
    background-color: white;
}

.search-input-container:hover, .search-input-container:focus-within {
    border-color: #5148ff;
    box-shadow: 0 0 0 2px rgba(112, 181, 229, 0.2);
}

.search-icon {
    margin-right: 10px;
    font-size: 18px;
    color: #5148ff;
}

.search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #4a5568;
    outline: none;
    padding: 5px 0;
}

.search-input::placeholder {
    color: #a0aec0;
}

.search-options {
    display: flex;
    justify-content: space-between;
    /*padding: 0 10px;*/
}

.search-option {
    position: relative;
    flex: 1;
    /*margin: 0 5px;*/
}

.option-header {
    color: white;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    background-color: 0;
    border: 1px solid rgba(255,255,255,0.6);
    justify-content: center;
}

.option-header:hover {
    border: 1px solid white
}

.option-icon {
    font-size: 18px;
    margin-right: 8px;
}

.category-icon {
    color: #4caf50;
}

.location-icon {
    color: #f59e0b;
}

.filter-icon {
    color: #ef4444;
}

.option-text {
    font-size: 18px;
    font-weight: 500;
}

.dropdown-arrow {
    font-size: 10px;
    margin-left: 8px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    min-width: 240px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 10;
    margin-top: 8px;
    max-height: 350px;
    overflow-y: auto;
    padding: 10px 0;
}

.dropdown.open .dropdown-content {
    display: block;
}

.dropdown-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: flex;
    align-items: center;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

.dropdown-item input {
    margin-right: 10px;
}

.dropdown-item label {
    flex: 1;
    cursor: pointer;
}

.dropdown-search {
    padding: 10px 15px;
    border-bottom: 1px solid #e1e4e8;
}

.dropdown-search input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    font-size: 14px;
}

.dropdown-items-container {
    max-height: 250px;
    overflow-y: auto;
}

.dropdown-section {
    padding: 10px 15px;
    border-bottom: 1px solid #e1e4e8;
}

.dropdown-section h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #4a5568;
}

.price-filter {
    padding: 5px 0 15px;
}

.price-slider {
    width: 100%;
    margin: 10px 0;
}

.price-values {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #4a5568;
}

.filter-actions {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-top: 1px solid #e1e4e8;
}

.btn-reset, .btn-apply {
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    font-size: 14px;
}

.btn-reset {
    background-color: #f8f9fa;
    color: #4a5568;
    border: 1px solid #e1e4e8;
}

.btn-apply {
    background-color: #70b5e5;
    color: white;
    border: none;
}

.search-button {
    display: block;
    width: 100%;
    padding: 12px;
    background-color: #70b5e5;
    color: white;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #5a9fcd;
}

@media (max-width: 768px) {
    .search-options {
        flex-direction: column;
    }

    .search-option {
        /*margin: 5px 0;*/
    }

    .dropdown-content {
        position: relative;
        margin-top: 5px;
    }
}
