.rasad-city-selector {
    width: 100%;
    max-width: 360px;
    background: #ffffff;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
    direction: rtl;
    font-family: inherit;
}

/* سرچ */
.rasad-city-search input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.rasad-city-search input:focus {
    border-color: #3b82f6;
    background: #ffffff;
}

/* لیست شهرها */
.rasad-city-list {
    margin-top: 14px;
    max-height: 300px;
    overflow-y: auto;
    padding-right: 4px;
}

.rasad-city-item {
    padding: 10px 12px;
    border-radius: 10px;
    margin-bottom: 6px;
    background: #f3f4f6;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.15s ease, transform 0.15s ease;
}

.rasad-city-item:hover {
    background: #e5e7eb;
    transform: translateY(-1px);
}

.rasad-city-item.active {
    background: #2563eb;
    color: #ffffff;
    font-weight: 600;
}

/* موبایل */
@media (max-width: 768px) {
    .rasad-city-selector {
        max-width: 100%;
        padding: 12px;
        border-radius: 14px;
    }
}