/* ===== CITY ZONE DIALOG - Prefix: fxczd- ===== */

.fxczd-dialog .mud-dialog {
    border: 2px solid #4B3E7B !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    box-shadow: 0 30px 80px rgba(75, 62, 123, 0.25) !important;
}

.fxczd-dialog .mud-dialog-content {
    padding: 0 !important;
    margin: 0 !important;
}

/* FIX: Remove MudBlazor's default top padding that clips the custom header */
.fxczd-dialog .mud-dialog > div:first-child {
    padding: 0 !important;
    margin: 0 !important;
}

/* Hide the empty MudBlazor title bar that adds spacing even without TitleContent */
.fxczd-dialog .mud-dialog-title {
    display: none !important;
}

.fxczd-dialog .mud-dialog {
    padding-top: 0 !important;
}

/* ===== Header ===== */
.fxczd-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 28px 14px;
    background: linear-gradient(135deg, #2D2350 0%, #4B3E7B 100%);
    position: relative;
    overflow: hidden;
}

.fxczd-header::before {
    content: "";
    position: absolute;
    inset: -40px -60px auto auto;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255,123,83,.25) 0%, transparent 65%);
    pointer-events: none;
}

.fxczd-icon-wrap {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,.15);
    border: 1.5px solid rgba(255,255,255,.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.fxczd-icon {
    color: #fff !important;
    font-size: 18px !important;
    width: 18px !important;
    height: 18px !important;
}

.fxczd-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 900;
    font-size: 15px;
    color: #fff;
    margin-bottom: 3px;
}

.fxczd-sub {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,.65);
}

/* ===== Form area ===== */
.fxczd-dialog form {
    padding: 24px 28px 28px;
    display: block;
}

/* ===== Centered Actions ===== */
.fxczd-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

.fxczd-actions .fxod-btn-cancel,
.fxczd-actions .fxod-btn-save {
    min-width: 130px !important;
}
