/* state-dropdown.css — searchable State/UT dropdown used across
   SignUp, EditProfile, Checkout, Admin user forms and Depo profile. */

.ne-state-dd-wrap {
    position: relative;
}

.ne-state-dd-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 70;
    margin-top: 4px;
    max-height: 230px;
    overflow-y: auto;
    background: #fff;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);
}

.ne-state-dd-item {
    padding: 8px 12px;
    font-size: .85rem;
    line-height: 1.3;
    color: #1f2937;
    cursor: pointer;
}

.ne-state-dd-item:hover,
.ne-state-dd-item.is-active {
    background: #f0fdfa;
    color: #0f766e;
}

.ne-state-dd-empty {
    padding: 8px 12px;
    font-size: .8rem;
    color: #9ca3af;
}

@media (max-width: 640px) {
    .ne-state-dd-panel {
        max-height: 200px;
    }
}
