.rera-search-form {
    position: relative;
}

#search-suggestions {
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 99999 !important;
    position: fixed !important;
}

.suggestion-item {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    cursor: url(https://verified.realestate/assets/dashboard/images/icon/pointer.svg), pointer !important;
    transition: background-color 0.2s ease;
}

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

.suggestion-item:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    #search-suggestions {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
    }

    .rera-search-form {
        flex-direction: column;
        gap: 10px;
    }

    .rera-search-form input {
        width: 100%;
    }

    .rera-search-form button {
        width: 100%;
    }
}

.btn-outline-orange {
    border-color: #ff6725;
    color: #ff6725;
}

.btn-outline-orange:hover {
    background-color: #ff6725;
    border-color: #ff6725;
    color: white;
}

.text-orange {
    color: #ff6725 !important;
}

/* Directory Navigation Styles */
.directory-item {
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.directory-header {
    padding: 15px 20px;
    cursor: url(https://verified.realestate/assets/dashboard/images/icon/pointer.svg), pointer !important;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    transition: background-color 0.2s ease;
}

.directory-header:hover {
    background-color: #e9ecef;
}

.directory-header.expanded {
    background-color: #ff6725;
    color: white;
}

.directory-title {
    display: flex;
    align-items: center;
    font-weight: 600;
}

.directory-icon {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.directory-toggle {
    transition: transform 0.3s ease;
}

.directory-toggle.expanded {
    transform: rotate(90deg);
}

.directory-children {
    padding-left: 30px;
    padding-right: 15px;
    padding-bottom: 15px;
    display: none;
}

.directory-child {
    padding: 8px 15px;
    margin-bottom: 5px;
    background: white;
    border-radius: 6px;
    cursor: url(https://verified.realestate/assets/dashboard/images/icon/pointer.svg), pointer !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.directory-child:hover {
    background-color: #f0f0f0;
    border-left-color: #ff6725;
    transform: translateX(5px);
}

.directory-child:last-child {
    margin-bottom: 0;
}

.village-item {
    cursor: url(https://verified.realestate/assets/dashboard/images/icon/pointer.svg), pointer !important;
}