        /* Searchable Select Styles */
.searchable-select {
    position: relative;
    width: 100%;
}

.ss-selected {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 1rem;
    padding: 1.25rem 1.5rem;
    font-size: 0.875rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
    color: #1e293b;
    font-weight: 600;
}

.ss-selected:hover {
    border-color: #f59e0b;
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.active .ss-selected {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
    border-color: #f1f5f9;
}

.ss-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 0 0 1.5rem 1.5rem;
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
    z-index: 9999;
    display: none;
    overflow: hidden;
}

.active .ss-dropdown {
    display: block;
    animation: ss-fade 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes ss-fade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ss-search-wrap {
    padding: 1rem;
    border-bottom: 1px solid #f8fafc;
}

.ss-search-input {
    width: 100%;
    border: 1px solid #f1f5f9;
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 16px;
    outline: none;
    transition: all 0.2s;
    background: #fcfcfd;
}

.ss-search-input:focus {
    border-color: #f59e0b;
    background: #fff;
}

.ss-options {
    max-height: 250px;
    overflow-y: auto;
    padding: 0.5rem;
}

/* Mobile Enhancements */
@media (max-width: 768px) {
    .ss-selected {
        font-size: 16px !important;
    }
}

.ss-option {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 0.75rem;
    color: #64748b;
    font-weight: 500;
    text-align: left; /* Ensure left alignment */
}

.ss-option:hover {
    background: #fffbeb;
    color: #92400e;
    /* Removed padding-left: 1.5rem to maintain left alignment without shift */
}

.ss-option.selected {
    background: #f59e0b;
    color: white;
    font-weight: 700;
}

/* Dark mode overrides for hero section if needed */
.bg-slate-900 .searchable-select .ss-selected {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.bg-slate-900 .searchable-select .ss-selected:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f59e0b;
}    