/* ══════════════════════════════════════════════════════════
   VACCIDCON 2026 — OnlineRegistration Stylesheet
   Design direction: Sky Blue + Dark Blue
   Palette: Dark Navy Blue + Sky Blue Accent
   Extracted from OnlineRegistrationNew.aspx
══════════════════════════════════════════════════════════ */

        /* ══════════════════════════════════════════════════════════
           VACCIDCON 2026 — OnlineRegistration WOW Design
           Design direction: Sky Blue + Dark Blue
           Palette: Dark Navy Blue + Sky Blue Accent
        ══════════════════════════════════════════════════════════ */

        :root {
            --reg-navy: #FFFFFF;
            --reg-navy-2: #EAF6FD;
            --reg-navy-3: #DCEEFB;
            --reg-teal: #0B4F8A;
            --reg-teal-glow: rgba(11,79,138,.12);
            --reg-gold: #29B6F6;
            --reg-gold-dim: rgba(41,182,246,.08);
            --reg-white: #0A2A4A;
            --reg-white-90: rgba(10,42,74,.90);
            --reg-white-60: rgba(10,42,74,.65);
            --reg-white-20: rgba(10,42,74,.20);
            --reg-white-08: rgba(10,42,74,.08);
            --reg-border: rgba(11,79,138,.15);
            --reg-border-teal: rgba(11,79,138,.25);
            --reg-red: #E74C3C;
            --reg-green: #0B4F8A;
            --reg-font: 'Sora', system-ui, sans-serif;
            --reg-mono: 'JetBrains Mono', monospace;
            --reg-r: 14px;
            --reg-r-lg: 20px;
            --reg-shadow: 0 24px 64px rgba(11,79,138,.15), 0 4px 16px rgba(11,79,138,.08);
            --reg-shadow-card: 0 8px 32px rgba(11,79,138,.12), 0 2px 8px rgba(11,79,138,.06);
        }

        /* ── Body canvas ─────────────────────────────────────── */
        body {
            font-family: var(--reg-font) !important;
            background: linear-gradient(135deg, #FFFFFF 0%, #F2FAFF 100%) !important;
            color: var(--reg-white-90) !important;
            min-height: 100vh;
        }

        /* ── Animated background mesh ─────────────────────────── */
        .reg-bg {
            position: fixed;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

            .reg-bg::before {
                content: '';
                position: absolute;
                width: 800px;
                height: 800px;
                background: radial-gradient(circle, rgba(11,79,138,.08) 0%, transparent 70%);
                top: -200px;
                right: -200px;
                animation: bgPulse 8s ease-in-out infinite alternate;
            }

            .reg-bg::after {
                content: '';
                position: absolute;
                width: 600px;
                height: 600px;
                background: radial-gradient(circle, rgba(41,182,246,.05) 0%, transparent 70%);
                bottom: -150px;
                left: -150px;
                animation: bgPulse 10s ease-in-out infinite alternate-reverse;
            }

        @keyframes bgPulse {
            from {
                transform: scale(1) translate(0, 0);
            }

            to {
                transform: scale(1.15) translate(30px, -20px);
            }
        }

        /* Grid lines overlay */
        .reg-grid-lines {
            position: fixed;
            inset: 0;
            z-index: 0;
            pointer-events: none;
            background-image: linear-gradient(rgba(11,79,138,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(11,79,138,.04) 1px, transparent 1px);
            background-size: 60px 60px;
        }

        /* ── Page wrapper ─────────────────────────────────────── */
        .reg-wrapper {
            position: relative;
            z-index: 1;
            padding: 40px 20px 80px;
            max-width: 900px;
            margin: 0 auto;
        }

        /* ── Conference badge header ──────────────────────────── */
        .reg-hero {
            text-align: center;
            padding: 0 0 40px;
            animation: fadeSlideDown .7s ease both;
        }

        @keyframes fadeSlideDown {
            from {
                opacity: 0;
                transform: translateY(-24px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .reg-hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--reg-gold-dim);
border: 1px solid rgba(41,182,246,.25);
            border-radius: 100px;
            padding: 6px 18px;
            font-size: 11px;
            font-weight: 700;
            color: var(--reg-gold);
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 18px;
        }

            .reg-hero-badge::before {
                content: '';
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background: var(--reg-gold);
                animation: dotPulse 1.8s ease-in-out infinite;
            }

        @keyframes dotPulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: .4;
                transform: scale(.7);
            }
        }

        .reg-hero h1 {
            font-size: clamp(28px, 5vw, 42px) !important;
            font-weight: 800 !important;
            color: #42416b !important;
            line-height: 1.15;
            margin: 0 0 12px !important;
            letter-spacing: -1px;
        }

            .reg-hero h1 span {
                background: linear-gradient(135deg, #42416b, #0B4F8A);
                -webkit-background-clip: text;
                -webkit-text-fill-color: transparent;
            }

        .reg-hero p {
            color: var(--reg-white-60);
            font-size: 15px;
            margin: 0;
            line-height: 1.6;
        }

        /* ── Support notice ───────────────────────────────────── */
        .reg-notice {
           background: rgba(41,182,246,.08);
            border: 1px solid var(--reg-border-teal);
            border-radius: var(--reg-r);
            padding: 12px 20px;
            font-size: 12.5px;
            color: #0B4F8A;
            margin-bottom: 28px;
            display: flex;
            align-items: center;
            gap: 10px;
            animation: fadeSlideDown .7s .1s ease both;
        }

            .reg-notice i {
                color: var(--reg-teal);
                font-size: 15px;
                flex-shrink: 0;
            }

            .reg-notice strong {
                color: var(--reg-teal);
            }

        /* ── Amount toggle link ───────────────────────────────── */
        .reg-fee-toggle {
            text-align: center;
            margin-bottom: 24px;
            animation: fadeSlideDown .7s .15s ease both;
        }

            .reg-fee-toggle a.lnkview {
                display: inline-flex !important;
                align-items: center;
                gap: 8px;
                color: var(--reg-teal) !important;
                font-weight: 600 !important;
                font-size: 13.5px !important;
                text-decoration: none !important;
                border: 1px solid var(--reg-border-teal);
                border-radius: 100px;
                padding: 8px 20px;
                transition: background .2s ease, border-color .2s ease;
            }

                .reg-fee-toggle a.lnkview:hover {
                    background: var(--reg-teal-glow);
                    border-color: var(--reg-teal);
                }

        /* ── Fee table panel ─────────────────────────────────────
           gvFees_RowDataBound sets inline style="background-color:White"
           directly on each <tr>. The ONLY way to override an inline
           style via CSS is the attribute selector [style*="..."].
        ─────────────────────────────────────────────────────── */
            .reg-fee-panel {
            background: #F0F6EB;
            border: 1px solid rgba(107,163,72,.20);
            border-radius: var(--reg-r);
            overflow: hidden;
            margin-bottom: 28px;
        }

            /* Kill white background on the ASP.NET Panel-rendered div */
            .reg-fee-panel div,
            .reg-fee-panel > div {
                background: #F0F6EB !important;
            }

            /* Table itself */
            .reg-fee-panel table {
                font-family: var(--reg-font) !important;
                width: 100% !important;
                border-collapse: collapse !important;
                background: #F0F6EB !important;
            }

                /* ── CRITICAL: directly target the <tr style="background-color:White"> ──
           ASP.NET RowDataBound renders:
             <tr style="background-color:White;color:#A5AEB8;">
           This attribute selector beats it because it's more specific. */
                .reg-fee-panel table tr[style*="background-color"] {
                    background-color: transparent !important;
                }

                .reg-fee-panel table tr[style*="White"],
                .reg-fee-panel table tr[style*="white"] {
                    background-color: #F0F6EB !important;
                }

                /* Also reset the <tr> with the grey header (#a5aeb8) */
                .reg-fee-panel table tr[style*="#a5aeb8"],
                .reg-fee-panel table tr[style*="A5AEB8"] {
                    background-color: #E8F1DE !important;
                }

                /* ALL td cells — light background + dark text */
                .reg-fee-panel table tr td,
                .reg-fee-panel table tr td span,
                .reg-fee-panel table tr td label {
                    background: transparent !important;
                    color: rgb(6 36 73 / 88%) !important;
                    padding: 12px 5px !important;
                    font-size: 13px !important;
                    font-weight: 500 !important;
                    border: none !important;
                    border-bottom: 1px solid rgba(107,163,72,.10) !important;
                }

                /* Header row (RowIndex==0 gets #a5aeb8 bg from RowDataBound) */
                .reg-fee-panel table tr:first-child td {
                    background: linear-gradient(135deg, #DAE8CE, #E8F1DE) !important;
                    color: rgba(45,80,22,.70) !important;
                    font-size: 11px !important;
                    font-weight: 700 !important;
                    text-transform: uppercase;
                    letter-spacing: .6px;
                }

                /* Odd data rows */
                .reg-fee-panel table tr:nth-child(odd) td {
                    background: rgba(107,163,72,.04) !important;
                }

                /* Even data rows — subtle green tint */
                .reg-fee-panel table tr:nth-child(even) td {
                    background: rgba(123,179,66,.06) !important;
                }

                /* Amount columns — green monospace */
                .reg-fee-panel table tr td:nth-child(n+3) {
                    color: #6BA348 !important;
                    font-weight: 700 !important;
                    font-family: 'JetBrains Mono', monospace !important;
                    font-size: 12.5px !important;
                }

            /* GST note at bottom */
            .reg-fee-panel .fee-note {
                padding: 12px 18px;
                font-size: 12px;
                color: rgba(107,163,72,.80);
                background: #F0F6EB;
                border-top: 1px solid rgba(107,163,72,.15);
            }


        /* ── Step progress indicator ──────────────────────────── */
        .reg-steps {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin-bottom: 36px;
            animation: fadeSlideDown .7s .2s ease both;
        }

        .reg-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            position: relative;
            flex: 1;
            max-width: 140px;
        }

        .reg-step-num {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--reg-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            font-weight: 700;
            color: var(--reg-white-60);
            background: var(--reg-navy-2);
            transition: all .3s ease;
            position: relative;
            z-index: 1;
        }

        .reg-step.active .reg-step-num {
            border-color: var(--reg-teal);
            color: #FFFFFF;
            background: linear-gradient(135deg, #1565C0, var(--reg-teal));
            box-shadow: 0 0 20px rgba(11,79,138,.4);
        }

        .reg-step.done .reg-step-num {
            border-color: var(--reg-green);
            color: #FFFFFF;
            background: linear-gradient(135deg, #0B4F8A, var(--reg-green));
        }

        .reg-step-label {
            font-size: 10.5px;
            font-weight: 600;
            color: var(--reg-white-60);
            text-align: center;
            text-transform: uppercase;
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .reg-step.active .reg-step-label {
            color: var(--reg-teal);
        }

        .reg-step.done .reg-step-label {
            color: var(--reg-green);
        }

        /* Connector line */
        .reg-step-line {
            flex: 1;
            height: 2px;
            background: var(--reg-border);
            margin-bottom: 22px;
            transition: background .3s ease;
        }

            .reg-step-line.done {
                background: var(--reg-green);
            }

            .reg-step-line.active {
                background: linear-gradient(90deg, var(--reg-green), var(--reg-teal));
            }

        /* ── Main card ────────────────────────────────────────── */
        .reg-card {
            background: linear-gradient(135deg, rgba(245,250,255,.98) 0%, rgba(235,244,253,.95) 100%);
            border: 1px solid rgba(11,79,138,.20);
            border-radius: var(--reg-r-lg);
            box-shadow: var(--reg-shadow);
            overflow: hidden;
            animation: fadeSlideDown .7s .3s ease both;
        }

            /* Card top accent line */
            .reg-card::before {
                content: '';
                display: block;
                height: 3px;
                background: linear-gradient(90deg, #0B4F8A, #0B4F8A, #29B6F6);
            }

        /* ── Section header inside card ───────────────────────── */
        .reg-section-head {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 24px 32px 0;
            margin-bottom: 24px;
        }

        .reg-section-icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            border-radius: 10px;
            background: linear-gradient(135deg, #D6ECFB, #EAF6FD);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(11,79,138,.2);
        }

            .reg-section-icon i {
                color: #0B4F8A;
                font-size: 16px;
            }

        .reg-section-title {
            font-size: 17px !important;
            font-weight: 700 !important;
            color: #0B4F8A !important;
            margin: 0 !important;
            letter-spacing: -.2px;
        }

        .reg-section-subtitle {
            font-size: 12px;
            color: var(--reg-white-60);
            margin-top: 2px;
        }

        /* ── Field group (divider between sections) ───────────── */
        .reg-field-group {
            padding: 0 32px;
            border-bottom: 1px solid var(--reg-border);
            padding-bottom: 28px;
            margin-bottom: 0;
        }

            .reg-field-group:last-child {
                border-bottom: none;
            }

        /* Group label (sub-section) */
        .reg-group-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 10.5px;
            font-weight: 700;
            color: var(--reg-teal);
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin: 20px 0 14px;
        }

            .reg-group-label::after {
                content: '';
                flex: 1;
                height: 1px;
                background: var(--reg-border-teal);
            }

        /* ── Form row ─────────────────────────────────────────── */
        .reg-form-row {
            display: grid;
            grid-template-columns: 220px 1fr;
            gap: 12px 20px;
            align-items: start;
            margin-bottom: 18px;
        }

        @media (max-width: 700px) {
            .reg-form-row {
                grid-template-columns: 1fr;
                gap: 6px;
            }

            .reg-field-group {
                padding: 0 18px 22px;
            }

            .reg-section-head {
                padding: 20px 18px 0;
            }
        }

        .reg-label {
            display: flex;
            align-items: baseline;
            gap: 5px;
            font-size: 12.5px !important;
            font-weight: 600 !important;
            color: var(--reg-white-60) !important;
            padding-top: 10px;
            font-family: var(--reg-font) !important;
            line-height: 1.4;
        }

            .reg-label .req-star {
                color: var(--reg-red);
                font-size: 14px;
                line-height: 1;
            }

        /* Override ASP.NET LabelStyles */
        .LabelStyles {
            font-family: var(--reg-font) !important;
            font-size: 12.5px !important;
            font-weight: 600 !important;
            color:#0B4F8A !important;
        }

        .LabelStyleValidation {
            color: var(--reg-red) !important;
        }

        .LabelStyleRequired {
            color: var(--reg-red) !important;
            font-size: 11.5px !important;
        }

        /* ── Text inputs ──────────────────────────────────────── */
        .form-control,
        input[type="text"].form-control,
        select.form-control,
        textarea.form-control,
        .TextBox {
            font-family: var(--reg-font) !important;
            font-size: 14px !important;
            color: #0B4F8A !important;
            background: rgba(11,79,138,.05) !important;
            border: 1.5px solid var(--reg-border) !important;
            border-radius: 10px !important;
            padding: 11px 16px !important;
            height: auto !important;
            min-height: 44px !important;
            width: 100% !important;
            transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
            -webkit-appearance: none;
            box-shadow: none !important;
        }

            .form-control::placeholder {
                color: rgba(10,42,74,.35) !important;
            }

            .form-control:focus {
                border-color: var(--reg-teal) !important;
                background: rgba(11,79,138,.10) !important;
                box-shadow: 0 0 0 3px rgba(11,79,138,.12) !important;
                outline: none;
                color: #0B4F8A !important;
            }

            select.form-control option {
                background: #F2FAFF;
                color: #0A2A4A;
            }

        textarea.form-control {
            min-height: 90px !important;
            resize: vertical;
        }

        /* Readonly input (country code) */
        input[readonly].form-control {
            background: rgba(11,79,138,.03) !important;
            color: var(--reg-white-60) !important;
            cursor: default;
        }

        /* ── Radio buttons ────────────────────────────────────── */
        .RadioButtonWidth,
        .reg-radio-group {
            display: flex !important;
            flex-wrap: wrap;
            gap: 8px;
        }

            .RadioButtonWidth label,
            .reg-radio-group label {
                display: inline-flex !important;
                align-items: center;
                gap: 8px;
                background: rgba(11,79,138,.06) !important;
                border: 1.5px solid var(--reg-border) !important;
                border-radius: 8px !important;
                padding: 9px 16px !important;
                font-size: 13px !important;
                font-weight: 500 !important;
                color: var(--reg-white-60) !important;
                cursor: pointer !important;
                transition: all .18s ease;
                margin: 0 !important;
                font-family: var(--reg-font) !important;
            }

                .RadioButtonWidth label:hover,
                .reg-radio-group label:hover {
                    border-color: var(--reg-teal) !important;
                    background: rgba(11,79,138,.12) !important;
                    color: #0B4F8A !important;
                }

            .RadioButtonWidth input[type="radio"],
            .reg-radio-group input[type="radio"] {
                accent-color: var(--reg-teal);
                width: 15px;
                height: 15px;
            }

        /* ── Amount highlight box ─────────────────────────────── */
        .reg-amount-box {
            background: linear-gradient(135deg, rgba(11,79,138,.08) 0%, rgba(11,79,138,.04) 100%);
            border: 1.5px solid var(--reg-border-teal);
            border-radius: var(--reg-r);
            padding: 18px 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin: 8px 0 20px;
        }

            .reg-amount-box .amount-label {
                font-size: 13px;
                color: var(--reg-white-60);
                font-weight: 600;
            }

            .reg-amount-box .amount-value {
                font-size: 28px !important;
                font-weight: 800 !important;
                color: #0B4F8A !important;
                font-family: var(--reg-mono) !important;
            }

        /* ── Payment note ─────────────────────────────────────── */
        .reg-pay-note {
            background: rgba(41,182,246,.08);
            border: 1px solid rgba(41,182,246,.20);
            border-radius: var(--reg-r);
            padding: 14px 18px;
            font-size: 12.5px;
            color: rgba(41,182,246,.90);
            margin: 10px 0;
            line-height: 1.6;
        }

            .reg-pay-note i {
                color: #29B6F6;
                margin-right: 6px;
            }

        /* ── Bank details ─────────────────────────────────────── */
        .reg-bank-table {
            width: 100%;
            border-collapse: collapse;
            border-radius: var(--reg-r);
            overflow: hidden;
            border: 1px solid var(--reg-border);
            margin: 10px 0;
        }

            .reg-bank-table tr {
                border-bottom: 1px solid var(--reg-border);
            }

                .reg-bank-table tr:last-child {
                    border-bottom: none;
                }

                .reg-bank-table tr:nth-child(odd) td:first-child {
                    background: rgba(11,79,138,.04);
                }

            .reg-bank-table td {
                padding: 10px 16px;
                font-size: 13px;
                color: var(--reg-white-90);
            }

                .reg-bank-table td:first-child {
                    color: var(--reg-white-60);
                    font-weight: 600;
                    width: 50%;
                    font-size: 12px;
                }

                .reg-bank-table td:last-child {
                    color: #0B4F8A;
                    font-family: var(--reg-mono);
                    font-size: 13px;
                }

        /* ── Photo upload area ────────────────────────────────── */
        .reg-photo-zone {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: wrap;
        }

        .reg-photo-preview-box {
            width: 120px;
            height: 120px;
            min-width: 120px;
            border-radius: 12px;
            border: 2px dashed var(--reg-border-teal);
            background: rgba(11,79,138,.04);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            position: relative;
        }

            .reg-photo-preview-box img {
                width: 116px;
                height: 116px;
                object-fit: cover;
                border-radius: 10px;
            }

        .reg-photo-info {
            flex: 1;
            min-width: 200px;
        }

        /* File input styling */
        .fileupload,
        input[type="file"] {
            display: block;
            width: 100%;
            font-family: var(--reg-font) !important;
            font-size: 13px !important;
            color: var(--reg-white-60) !important;
            background: rgba(11,79,138,.05) !important;
            border: 1.5px dashed var(--reg-border) !important;
            border-radius: 10px !important;
            padding: 12px 16px !important;
            cursor: pointer;
            transition: border-color .2s ease;
        }

            input[type="file"]:hover,
            .fileupload:hover {
                border-color: var(--reg-teal) !important;
            }

        /* ── Buttons ──────────────────────────────────────────── */
        .reg-btn-row {
            padding: 28px 32px;
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            background: rgba(11,79,138,.05);
            border-top: 1px solid var(--reg-border);
        }

        .btn-primary,
        .reg-btn-primary {
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px;
            font-family: var(--reg-font) !important;
            font-size: 14px !important;
            font-weight: 700 !important;
            color: #FFFFFF !important;
            background: linear-gradient(135deg, #0B4F8A, #0B4F8A) !important;
            border: none !important;
            border-radius: 10px !important;
            padding: 13px 28px !important;
            cursor: pointer !important;
            min-height: 48px !important;
            transition: transform .15s ease, box-shadow .15s ease, filter .15s ease !important;
            box-shadow: 0 4px 20px rgba(11,79,138,.3) !important;
            letter-spacing: .2px;
        }

            .btn-primary:hover,
            .reg-btn-primary:hover {
                transform: translateY(-2px) !important;
                box-shadow: 0 8px 30px rgba(11,79,138,.45) !important;
                filter: brightness(1.08);
                color: #FFFFFF !important;
            }

        /* Reset button */
        #ctl00_Body_btnReset,
        [id$="btnReset"] {
            background: rgba(11,79,138,.08) !important;
            color: var(--reg-white-60) !important;
            box-shadow: none !important;
            border: 1.5px solid var(--reg-border) !important;
        }

            [id$="btnReset"]:hover {
                background: rgba(11,79,138,.14) !important;
                color: #0B4F8A !important;
                transform: translateY(-1px) !important;
            }

        /* Refresh button */
        [id$="btnrefresh"] {
            background: rgba(11,79,138,.06) !important;
            color: rgba(255, 0, 0, 0.7) !important;
            box-shadow: none !important;
            border: 1px solid rgba(0, 0, 0, 0.12) !important
            font-size: 12px !important;
            padding: 9px 18px !important;
            min-height: 38px !important;
        }

        /* Get name button */
        [id$="btnGetGuide"] {
            background: linear-gradient(135deg, #1565C0, #0B4F8A) !important;
            color: #FFFFFF !important;
            padding: 10px 20px !important;
            min-height: 42px !important;
            font-size: 13px !important;
        }

        /* ── Closed panel ─────────────────────────────────────── */
        .reg-closed-card {
            text-align: center;
            padding: 60px 40px;
        }

            .reg-closed-card img {
                max-width: 280px;
                border-radius: 16px;
                box-shadow: 0 8px 40px rgba(0,0,0,.5);
                margin-bottom: 24px;
            }

        /* ── Inline code (reg numbers) ────────────────────────── */
        .reg-mono-text {
            font-family: var(--reg-mono) !important;
            font-size: 12.5px !important;
            color: var(--reg-teal) !important;
            letter-spacing: .3px;
        }

        /* ── Note text ────────────────────────────────────────── */
        .reg-field-note {
            font-size: 11.5px;
           color: rgba(41,182,246,.85);
            margin-top: 5px;
            display: block;
            line-height: 1.5;
        }

        /* ── Accompanying person sub-card ─────────────────────── */
        .reg-subcard {
            background: rgba(11,79,138,.06);
            border: 1px solid var(--reg-border);
            border-radius: var(--reg-r);
            padding: 20px;
            margin-bottom: 14px;
        }

        .reg-subcard-head {
            font-size: 12px;
            font-weight: 700;
            color: #0B4F8A;
            text-transform: uppercase;
            letter-spacing: .8px;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        /* ── Mobile phone input group ─────────────────────────── */
        .reg-phone-group {
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

            .reg-phone-group .form-control:first-child {
                width: 75px !important;
                flex-shrink: 0;
                text-align: center;
                font-family: var(--reg-mono) !important;
                font-weight: 600;
            }

            .reg-phone-group .form-control:last-child {
                flex: 1;
            }

        /* ── Mandatory asterisk ───────────────────────────────── */
        .reg-mandatory {
            font-size: 11px;
            color: var(--reg-white-60);
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

            .reg-mandatory span {
                color: var(--reg-red);
                font-size: 14px;
            }

        /* ── Scrollbar ────────────────────────────────────────── */
        ::-webkit-scrollbar {
            width: 6px;
            height: 6px;
        }

        ::-webkit-scrollbar-track {
            background: #EAF6FD;
        }

        ::-webkit-scrollbar-thumb {
            background: rgba(11,79,138,.3);
            border-radius: 4px;
        }

            ::-webkit-scrollbar-thumb:hover {
                background: #0B4F8A;
            }

        /* ── Validation summary ───────────────────────────────── */
        .validation-summary {
            display: none;
        }

        /* ── Ajax calendar z-index ────────────────────────────── */
        .ajax__calendar_container {
            z-index: 9999 !important;
        }

        /* ── Responsive ───────────────────────────────────────── */
        @media (max-width: 600px) {
            .reg-wrapper {
                padding: 20px 12px 60px;
            }

            .reg-steps {
                display: none;
            }
            /* hide step indicators on very small screens */
            .reg-btn-row {
                padding: 20px 18px;
                flex-direction: column;
            }

                .reg-btn-row .btn-primary,
                .reg-btn-row [id$="btnReset"] {
                    width: 100%;
                    justify-content: center;
                }

            .reg-form-row {
                grid-template-columns: 1fr;
            }

            .reg-phone-group {
                flex-wrap: wrap;
            }

                .reg-phone-group .form-control:first-child {
                    width: 25% !important;
                }
        }

        /* ── jQuery UI Autocomplete — green theme override ─────── */
        .ui-autocomplete {
            background: #F2FAFF !important;
            border: 1px solid rgba(11,79,138,.3) !important;
            border-radius: 10px !important;
            box-shadow: 0 8px 32px rgba(11,79,138,.15) !important;
            font-family: var(--reg-font) !important;
            font-size: 13px !important;
            z-index: 9999 !important;
            max-height: 220px;
            overflow-y: auto;
            overflow-x: hidden;
        }

            .ui-autocomplete .ui-menu-item {
                padding: 0 !important;
            }

                .ui-autocomplete .ui-menu-item a,
                .ui-autocomplete .ui-menu-item-wrapper {
                    display: block;
                    padding: 10px 16px !important;
                    color: rgba(10,42,74,.80) !important;
                    font-family: var(--reg-font) !important;
                    font-size: 13px !important;
                    cursor: pointer;
                    border-radius: 0 !important;
                    transition: background .12s ease, color .12s ease;
                }

                    .ui-autocomplete .ui-menu-item a:hover,
                    .ui-autocomplete .ui-menu-item a.ui-state-hover,
                    .ui-autocomplete .ui-menu-item a.ui-state-focus,
                    .ui-state-active, .ui-widget-content .ui-state-active {
                        background: rgba(11,79,138,.15) !important;
                        color: #0B4F8A !important;
                        border: none !important;
                    }

        .ui-widget {
            font-family: var(--reg-font) !important;
        }

        .ui-helper-hidden-accessible {
            display: none !important;
        }

        /* ── Hidden helper ────────────────────────────────────── */
        .hidden {
            display: none !important;
        }

/* Mobile scroll helper */
        .mobileScroll {
            width: 100%;
            overflow-x: auto;
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch;
        }

            .mobileScroll table {
                min-width: 1000px; /* adjust based on your columns */

/* Registration type display box */
  