* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100%;
    font-family: Arial, Helvetica, sans-serif;
    color: #151515;
    letter-spacing: 0;
}

a {
    color: #d60000;
    text-decoration: none;
    font-weight: 800;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
select {
    font: inherit;
}

.site-shell,
.admin-login-shell {
    min-height: 100vh;
    background:
        linear-gradient(115deg, rgba(214, 0, 0, 0.3), transparent 34%),
        linear-gradient(245deg, rgba(255, 255, 255, 0.16), transparent 24%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 12px),
        #050505;
    color: #ffffff;
}

.site-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.15), #060606 78%),
        repeating-linear-gradient(0deg, transparent 0 58px, rgba(214, 0, 0, 0.22) 60px 62px);
    opacity: 0.85;
}

.registration-page,
.payment-page,
.status-page,
.thankyou-page {
    position: relative;
    z-index: 1;
    width: min(1360px, calc(100% - 32px));
    margin: 0 auto;
    padding: 28px 0 42px;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 20px;
    text-align: left;
}

.brand-header.centered {
    text-align: center;
}

.brand-logo {
    width: 150px;
    height: auto;
}

.large-logo {
    width: 220px;
}

.eyebrow {
    margin: 0 0 4px;
    color: #d60000;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-header h1,
.admin-header h1,
.thankyou-left h1 {
    margin: 0;
    font-size: 42px;
    line-height: 1.04;
    color: #ffffff;
}

.registration-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    align-items: start;
    width: min(1180px, 100%);
    margin: 0 auto;
}

.payment-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
    gap: 18px;
    align-items: start;
}

.payment-grid {
    grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
    width: min(1040px, 100%);
    margin: 0 auto;
}

.panel,
.admin-card,
.login-card {
    background: #ffffff;
    color: #151515;
    border-radius: 12px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.panel {
    padding: 26px;
}

.form-panel,
.payment-preview,
.payment-card,
.submit-card {
    border: 1px solid rgba(214, 0, 0, 0.22);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 12px;
    width: fit-content;
    min-height: 48px;
    margin: -10px 0 20px;
    padding: 10px 18px;
    color: #ffffff;
    background: linear-gradient(180deg, #f23434, #b90000);
    border-radius: 8px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.panel-title.compact {
    margin-inline: auto;
}

.panel-title h2 {
    margin: 0;
    font-size: 18px;
    line-height: 1.1;
}

.panel-icon {
    display: inline-grid;
    place-items: center;
    min-width: 34px;
    height: 28px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.18);
    font-size: 12px;
    font-weight: 900;
}

.player-form {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 20px;
}

.player-form label,
.upload-form label,
.login-form label {
    display: grid;
    gap: 7px;
    min-width: 0;
}

.player-form label span,
.upload-form label span,
.login-form label span {
    font-size: 14px;
    font-weight: 900;
}

.player-form input,
.player-form select,
.upload-form input,
.login-form input,
.filter-form input,
.filter-form select {
    width: 100%;
    min-height: 46px;
    border: 1px solid #d8d8d8;
    border-radius: 8px;
    padding: 0 14px;
    background: #fbfbfb;
    color: #1f1f1f;
    outline: none;
}

.player-form input:focus,
.player-form select:focus,
.upload-form input:focus,
.login-form input:focus,
.filter-form input:focus,
.filter-form select:focus {
    border-color: #d60000;
    box-shadow: 0 0 0 3px rgba(214, 0, 0, 0.13);
}

.player-form label:nth-of-type(4),
.player-form label:nth-of-type(5) {
    grid-column: span 1;
}

.terms-row {
    grid-column: 1 / -1;
    display: flex !important;
    grid-template-columns: none;
    align-items: center;
    gap: 10px !important;
}

.terms-row input {
    width: 20px;
    min-height: 20px;
    accent-color: #d60000;
}

.terms-row strong {
    color: #d60000;
}

.field-error {
    color: #b90000;
    font-size: 12px;
    font-weight: 800;
}

.primary-action,
.secondary-action,
.export-btn,
.filter-form button,
.approve-btn,
.decline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 46px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    font-weight: 900;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.primary-action {
    grid-column: 1 / -1;
    min-height: 58px;
    color: #ffffff;
    background: linear-gradient(180deg, #f52a2a, #ba0000);
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(214, 0, 0, 0.25);
}

.secondary-action {
    color: #d60000;
    background: #ffffff;
    border: 1px solid #f0b1b1;
}

.button-icon {
    display: inline-grid;
    place-items: center;
    min-width: 30px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.86);
    border-radius: 50%;
    font-size: 13px;
}

.payment-preview,
.payment-card {
    text-align: center;
}

.payment-kicker {
    margin: 8px 0 0;
    color: #151515;
    font-weight: 900;
    text-transform: uppercase;
}

.payment-amount {
    display: block;
    margin: 8px 0 16px;
    color: #d60000;
    font-size: 46px;
    line-height: 1;
}

.qr-card {
    width: min(260px, 100%);
    margin: 0 auto 18px;
    border: 1px solid #e35e5e;
    border-radius: 14px;
    background: #ffffff;
}

.qr-card.large {
    width: min(330px, 100%);
}

.upi-line,
.upi-box {
    display: grid;
    gap: 4px;
    margin: 14px auto;
    padding: 14px;
    border: 1px solid #f1cccc;
    border-radius: 10px;
    background: #fff8f8;
}

.upi-line span,
.upi-box span,
.summary-list span,
.confirmation-card span {
    color: #6b6f76;
    font-size: 13px;
    font-weight: 800;
}

.upi-box small {
    color: #6b6f76;
}

.instruction-list {
    margin: 18px 0 0;
    padding-left: 22px;
    text-align: left;
    color: #2d2d2d;
    font-size: 14px;
    line-height: 1.7;
    font-weight: 700;
}

.instruction-list.boxed {
    padding: 14px 18px 14px 36px;
    border: 1px solid #f1cccc;
    border-radius: 10px;
    background: #fffdfd;
}

.mini-jersey {
    display: grid;
    place-items: center;
    min-height: 180px;
    margin-top: 18px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, rgba(214, 0, 0, 0.11), transparent),
        #161616;
}

.jersey-shape,
.player-jersey {
    position: relative;
    display: grid;
    place-items: center;
    color: #ffffff;
    text-align: center;
    background:
        linear-gradient(135deg, transparent 0 28%, rgba(255, 255, 255, 0.9) 29% 36%, transparent 37%),
        linear-gradient(160deg, #fb2b2b, #9a0000 62%, #e41b1b);
    border: 2px solid rgba(255, 255, 255, 0.76);
    clip-path: polygon(18% 0, 35% 0, 42% 12%, 58% 12%, 65% 0, 82% 0, 100% 27%, 85% 42%, 85% 100%, 15% 100%, 15% 42%, 0 27%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.jersey-shape {
    width: 130px;
    height: 150px;
}

.jersey-shape span,
.player-jersey span {
    align-self: end;
    font-weight: 900;
    max-width: 82%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.jersey-shape strong,
.player-jersey strong {
    align-self: start;
    font-size: 44px;
    line-height: 1;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.34);
}

.alert {
    width: min(1360px, 100%);
    margin: 0 auto 16px;
    padding: 14px 16px;
    border-radius: 10px;
    font-weight: 800;
}

.alert.success {
    color: #075a1d;
    background: #dff7e5;
    border: 1px solid #a7e3b7;
}

.alert.danger {
    color: #8e0000;
    background: #ffe6e6;
    border: 1px solid #ffbbbb;
}

.alert.warning {
    color: #8a5800;
    background: #fff1d1;
    border: 1px solid #ffd58b;
}

.inline-alert {
    margin: 16px 0;
}

.summary-list,
.confirmation-card {
    display: grid;
    gap: 10px;
}

.summary-list div,
.confirmation-card div {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #eeeeee;
}

.summary-list strong,
.confirmation-card strong {
    text-align: right;
    overflow-wrap: anywhere;
}

.upload-form {
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.upload-form small {
    color: #6b6f76;
    font-weight: 700;
}

.status-page {
    width: min(760px, calc(100% - 32px));
}

.status-card {
    text-align: center;
}

.status-mark {
    display: grid;
    place-items: center;
    width: 86px;
    height: 86px;
    margin: 0 auto 16px;
    border-radius: 50%;
    color: #ffffff;
    background: #f0a000;
    font-size: 28px;
    font-weight: 900;
}

.status-card.declined .status-mark {
    background: #d60000;
}

.status-card h2 {
    margin: 6px 0 12px;
    font-size: 34px;
}

.status-copy {
    margin: 0 0 20px;
    color: #d8d8d8;
    font-size: 16px;
    line-height: 1.55;
}

.status-card .status-copy {
    color: #4c4c4c;
}

.summary-list.dark {
    width: min(520px, 100%);
    margin: 18px auto;
    padding: 8px 16px;
    border-radius: 12px;
    background: #151515;
}

.summary-list.dark div {
    border-color: rgba(255, 255, 255, 0.14);
}

.summary-list.dark strong {
    color: #ffffff;
}

.status-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 18px;
}

.thankyou-page {
    width: min(1480px, calc(100% - 24px));
}

.thankyou-board {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(360px, 1.35fr) minmax(240px, 0.7fr);
    gap: 28px;
    align-items: center;
    min-height: calc(100vh - 72px);
    padding: 38px;
    border: 1px solid rgba(255, 42, 42, 0.72);
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.96), rgba(0, 0, 0, 0.7)),
        repeating-linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 13px);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

.script-title {
    margin: 20px 0 8px;
    color: #ffffff;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 52px;
    font-style: italic;
    line-height: 0.95;
}

.confirmation-card {
    margin-top: 24px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.confirmation-card div {
    border-color: rgba(255, 255, 255, 0.13);
}

.confirmation-card strong {
    color: #ffffff;
}

.paid-pill {
    color: #70e66c !important;
}

.jersey-stage {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 600px;
    perspective: 900px;
}

.orbit {
    position: relative;
    width: min(590px, 100%);
    height: 430px;
    animation: jerseyFloat 4.5s ease-in-out infinite;
}

.player-jersey {
    position: absolute;
    top: 35px;
    width: 230px;
    height: 285px;
    transform-style: preserve-3d;
}

.player-jersey.center {
    left: 50%;
    z-index: 3;
    width: 285px;
    height: 350px;
    transform: translateX(-50%) rotateY(0deg);
    animation: jerseyTurn 6s linear infinite;
}

.player-jersey.side {
    top: 100px;
    z-index: 2;
    width: 185px;
    height: 235px;
    opacity: 0.9;
}

.player-jersey.side-left {
    left: 2%;
    transform: rotateY(26deg) scale(0.95);
}

.player-jersey.side-right {
    right: 2%;
    transform: rotateY(-26deg) scale(0.95);
}

.player-jersey.center span {
    font-size: 26px;
}

.player-jersey.center strong {
    font-size: 96px;
}

.player-jersey.side span {
    font-size: 16px;
}

.player-jersey.side strong {
    font-size: 58px;
}

.pedestal {
    position: absolute;
    bottom: 56px;
    left: 50%;
    display: grid;
    place-items: center;
    width: min(520px, 85%);
    height: 100px;
    transform: translateX(-50%);
    border: 4px solid #ff2a2a;
    border-radius: 50%;
    color: #ffffff;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.16), rgba(214, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
    box-shadow: 0 0 28px rgba(255, 42, 42, 0.72);
}

.pedestal::before {
    content: "";
    position: absolute;
    inset: 12px 44px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: ringSpin 5s linear infinite;
}

.pedestal span {
    position: relative;
    z-index: 1;
    margin-top: 92px;
    font-size: 34px;
    font-weight: 900;
}

.thankyou-right {
    display: grid;
    gap: 30px;
}

.timeline-item {
    position: relative;
    padding-left: 58px;
}

.timeline-item span {
    position: absolute;
    left: 0;
    top: 0;
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 2px solid #d60000;
    border-radius: 50%;
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.timeline-item strong {
    display: block;
    color: #ff2a2a;
    font-size: 18px;
    text-transform: uppercase;
}

.timeline-item p {
    margin: 6px 0 0;
    color: #ffffff;
    line-height: 1.5;
}

@keyframes jerseyFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

@keyframes jerseyTurn {
    0% {
        transform: translateX(-50%) rotateY(-8deg);
    }
    50% {
        transform: translateX(-50%) rotateY(8deg);
    }
    100% {
        transform: translateX(-50%) rotateY(-8deg);
    }
}

@keyframes ringSpin {
    from {
        transform: rotateZ(0deg);
    }
    to {
        transform: rotateZ(360deg);
    }
}

.admin-login-shell {
    display: grid;
    place-items: center;
    padding: 24px;
}

.login-card {
    width: min(430px, 100%);
    padding: 34px;
    text-align: center;
}

.login-card .brand-logo {
    margin: 0 auto 18px;
}

.login-card h1 {
    margin: 0 0 20px;
}

.login-form {
    display: grid;
    gap: 16px;
    text-align: left;
}

.login-form .primary-action {
    width: 100%;
    font-size: 16px;
}

.admin-shell {
    min-height: 100vh;
    background: #f5f6f8;
    color: #151515;
}

.admin-sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: 260px;
    padding: 28px 18px;
    color: #ffffff;
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.98)),
        linear-gradient(135deg, #d60000, #111111);
}

.admin-logo {
    width: 205px;
    margin: 0 auto 28px;
}

.admin-sidebar nav {
    display: grid;
    gap: 10px;
}

.admin-sidebar a {
    display: flex;
    align-items: center;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 8px;
    color: #ffffff;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
    background: linear-gradient(180deg, #ef2525, #bd0000);
}

.admin-main {
    margin-left: 260px;
    padding: 30px 38px 46px;
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-header h1 {
    color: #151515;
    font-size: 34px;
}

.admin-header p {
    margin: 6px 0 0;
    color: #7b7f88;
    font-size: 18px;
}

.admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.export-btn {
    color: #ffffff;
}

.export-btn.excel {
    background: #169b36;
}

.export-btn.pdf {
    background: #d60000;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}

.stat-card {
    min-height: 136px;
    padding: 24px;
    border-radius: 12px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(0, 0, 0, 0.07);
}

.stat-card span {
    display: block;
    font-weight: 900;
}

.stat-card strong {
    display: block;
    margin: 8px 0;
    font-size: 34px;
}

.stat-card small {
    font-weight: 800;
}

.stat-card.red small,
.stat-card.red span {
    color: #d60000;
}

.stat-card.green small,
.stat-card.green span {
    color: #169b36;
}

.stat-card.orange small,
.stat-card.orange span {
    color: #f29a00;
}

.stat-card.gray small,
.stat-card.gray span {
    color: #6b6f76;
}

.admin-card {
    padding: 22px;
    border: 1px solid #eceff3;
}

.admin-card.narrow {
    max-width: 540px;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.table-header h2,
.detail-grid h2 {
    margin: 0;
}

.filter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.filter-form input {
    width: 260px;
}

.filter-form select {
    width: 150px;
}

.filter-form button {
    color: #ffffff;
    background: #d60000;
}

.table-wrap {
    overflow-x: auto;
}

.registrations-table {
    width: 100%;
    min-width: 1180px;
    border-collapse: collapse;
}

.registrations-table th {
    padding: 15px 12px;
    color: #ffffff;
    background: #d60000;
    text-align: left;
    font-size: 13px;
}

.registrations-table td {
    padding: 14px 12px;
    border-bottom: 1px solid #eceff3;
    vertical-align: middle;
    font-size: 14px;
}

.player-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    border-radius: 50%;
    color: #ffffff;
    background: #161616;
    font-weight: 900;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    min-height: 30px;
    border-radius: 6px;
    padding: 0 10px;
    font-weight: 900;
    font-size: 13px;
}

.status-pill.approved {
    color: #087224;
    background: #dff7e5;
}

.status-pill.pending,
.status-pill.draft {
    color: #9a6400;
    background: #fff1d1;
}

.status-pill.declined {
    color: #a00000;
    background: #ffe2e2;
}

.row-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.approve-btn,
.decline-btn {
    min-height: 36px;
    padding: 0 12px;
    color: #ffffff;
    font-size: 13px;
}

.approve-btn {
    background: #169b36;
}

.decline-btn {
    background: #d60000;
}

.muted,
.empty-row {
    color: #7b7f88;
}

.pagination-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 18px;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pagination a {
    display: grid;
    place-items: center;
    min-width: 38px;
    height: 38px;
    border: 1px solid #e2e6ec;
    border-radius: 6px;
    color: #151515;
    background: #ffffff;
}

.pagination a.active {
    color: #ffffff;
    background: #d60000;
    border-color: #d60000;
}

.detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 28px;
}

.admin-summary {
    margin-top: 18px;
}

.detail-actions {
    margin-top: 20px;
}

.screenshot-preview {
    display: block;
    overflow: hidden;
    margin-top: 18px;
    border: 1px solid #e2e6ec;
    border-radius: 12px;
    background: #f8f8f8;
}

.screenshot-preview img {
    width: 100%;
    max-height: 620px;
    object-fit: contain;
}

.empty-screenshot {
    display: grid;
    place-items: center;
    min-height: 260px;
    margin-top: 18px;
    border: 1px dashed #cfd5df;
    border-radius: 12px;
    color: #7b7f88;
    font-weight: 900;
}

@media (max-width: 1180px) {
    .registration-grid,
    .payment-grid,
    .thankyou-board,
    .detail-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-board {
        min-height: auto;
    }

    .thankyou-right {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 880px) {
    .player-form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-sidebar {
        position: static;
        width: 100%;
        min-height: auto;
    }

    .admin-main {
        margin-left: 0;
        padding: 22px 16px 34px;
    }

    .admin-header,
    .table-header,
    .pagination-row {
        align-items: stretch;
        flex-direction: column;
    }

    .filter-form input,
    .filter-form select,
    .filter-form button {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .registration-page,
    .payment-page,
    .status-page,
    .thankyou-page {
        width: min(100% - 18px, 100%);
        padding-top: 16px;
    }

    .brand-header {
        flex-direction: column;
        text-align: center;
    }

    .brand-header h1,
    .admin-header h1,
    .thankyou-left h1 {
        font-size: 31px;
    }

    .panel,
    .admin-card,
    .login-card {
        padding: 18px;
        border-radius: 10px;
    }

    .player-form {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .payment-amount {
        font-size: 38px;
    }

    .stats-grid,
    .thankyou-right {
        grid-template-columns: 1fr;
    }

    .thankyou-board {
        padding: 20px;
    }

    .script-title {
        font-size: 42px;
    }

    .jersey-stage {
        min-height: 470px;
        overflow: hidden;
    }

    .orbit {
        height: 350px;
    }

    .player-jersey.center {
        width: 215px;
        height: 275px;
    }

    .player-jersey.side {
        width: 145px;
        height: 190px;
    }

    .player-jersey.center strong {
        font-size: 70px;
    }

    .player-jersey.center span {
        font-size: 20px;
    }

    .player-jersey.side-left {
        left: -8%;
    }

    .player-jersey.side-right {
        right: -8%;
    }

    .pedestal {
        bottom: 42px;
        height: 78px;
    }

    .pedestal span {
        margin-top: 76px;
        font-size: 26px;
    }

    .summary-list div,
    .confirmation-card div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .summary-list strong,
    .confirmation-card strong {
        text-align: left;
    }
}
