.ss-wrapper {
    position: relative;
}

.ss-input {
    cursor: text;
}

.ss-input.ss-has-value {
    color: #1f2937;
    font-weight: 500;
}

.ss-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1050;
    max-height: 220px;
    overflow-y: auto;
    background: white;
    border: 1px solid #e2e8f0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.ss-item {
    padding: 0.5rem 0.75rem;
    font-size: 0.8125rem;
    cursor: pointer;
    transition: background 0.1s ease;
    color: #374151;
    border-bottom: 1px solid #f8fafc;
}

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

.ss-item:hover {
    background: #fef8f7;
    color: #FF6247;
}

.ss-empty {
    padding: 0.75rem;
    font-size: 0.8125rem;
    color: #94a3b8;
    text-align: center;
}
