/* ============================================
   Main Street Homes — Event Check-In
   ============================================ */

:root {
    /* Brand colors */
    --msh-red: #a8353a;
    --msh-red-dark: #8F191E;
    --msh-red-light: #c5464c;
    --msh-cream: #f5f4f0;
    --msh-white: #FFFFFF;
    --msh-dark: #2B2B2B;
    --msh-gray: #4a4a4a;

    /* Functional colors */
    --color-success: #16A34A;
    --color-success-bg: #DCFCE7;
    --color-error: #DC2626;
    --color-error-bg: #FEE2E2;
    --color-info: #2563EB;
    --color-info-bg: #DBEAFE;
    --color-warning: #D97706;
    --color-warning-bg: #FEF3C7;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);

    /* Borders */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-body);
    background: var(--msh-cream);
    color: var(--msh-dark);
    min-height: 100vh;
    min-height: -webkit-fill-available;
    line-height: 1.5;
    overflow-x: hidden;
}

html {
    height: -webkit-fill-available;
}

/* ---- Loading Screen ---- */
.loading-screen {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    gap: var(--space-md);
}

.loading-screen p {
    color: #6B7280;
    font-size: 1.125rem;
}

/* ---- Brand ---- */
.brand-text {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--msh-red);
    font-size: 2rem;
    letter-spacing: -0.02em;
}

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

.brand-subtitle {
    font-family: var(--font-body);
    color: var(--msh-red);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 44px;
    -webkit-appearance: none;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
    background: var(--msh-red);
    color: var(--msh-white);
}
.btn-primary:hover { background: var(--msh-red-dark); }

.btn-gold {
    background: var(--msh-red);
    color: var(--msh-white);
}
.btn-gold:hover { background: var(--msh-red-dark); }

.btn-success {
    background: var(--color-success);
    color: var(--msh-white);
}
.btn-success:hover { background: #15803D; }

.btn-danger {
    background: var(--color-error);
    color: var(--msh-white);
}
.btn-danger:hover { background: #B91C1C; }

.btn-outline {
    background: transparent;
    border: 2px solid var(--msh-red);
    color: var(--msh-red);
}
.btn-outline:hover { background: var(--msh-red-dark); color: var(--msh-white); border-color: var(--msh-red-dark); }

.btn-ghost {
    background: transparent;
    color: var(--msh-red);
}
.btn-ghost:hover { background: rgba(168,53,58,0.05); }

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    min-height: 36px;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.25rem;
    min-height: 56px;
}

.btn-xl {
    padding: 20px 48px;
    font-size: 1.5rem;
    min-height: 64px;
    border-radius: var(--radius-lg);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ---- Cards ---- */
.card {
    background: var(--msh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: var(--space-lg);
}

/* ---- Forms ---- */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    font-size: 0.875rem;
    color: #374151;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-md);
    background: var(--msh-white);
    color: var(--msh-dark);
    transition: border-color 0.2s;
    min-height: 44px;
    -webkit-appearance: none;
}

.form-input:focus {
    outline: none;
    border-color: var(--msh-red);
    box-shadow: 0 0 0 3px rgba(168,53,58,0.1);
}

.form-input::placeholder {
    color: #9CA3AF;
}

.form-error {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--space-xs);
}

textarea.form-input {
    resize: vertical;
    min-height: 80px;
}

/* ---- Layout ---- */
.page-header {
    background: var(--msh-red);
    color: var(--msh-white);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 60px;
}

.page-header .brand-text {
    color: var(--msh-white);
    font-size: 1.25rem;
}

.back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: var(--radius-md);
    background: none;
    color: var(--msh-white);
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s, border-color 0.2s;
    margin-right: var(--space-sm);
}

.back-btn:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
}

.back-btn:active {
    transform: scale(0.95);
}

.page-header-actions {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg);
}

/* ---- Overlay / Modal ---- */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
    padding: var(--space-lg);
}

.modal {
    background: var(--msh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    animation: slideUp 0.3s ease;
}

.modal-header {
    padding: var(--space-lg);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--msh-red);
}

.modal-body {
    padding: var(--space-lg);
}

.modal-footer {
    padding: var(--space-md) var(--space-lg);
    border-top: 1px solid #E5E7EB;
    display: flex;
    gap: var(--space-sm);
    justify-content: flex-end;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    padding: 4px;
    line-height: 1;
}

/* ---- Animations ---- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes cardAppear {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Checkmark animation */
@keyframes checkmark-circle {
    0% { stroke-dashoffset: 166; }
    100% { stroke-dashoffset: 0; }
}

@keyframes checkmark-check {
    0% { stroke-dashoffset: 80; }
    100% { stroke-dashoffset: 0; }
}

.checkmark-svg {
    width: 100px;
    height: 100px;
}

.checkmark-circle {
    stroke: var(--color-success);
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    animation: checkmark-circle 0.6s ease forwards;
}

.checkmark-check {
    stroke: var(--color-success);
    stroke-width: 4;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 80;
    stroke-dashoffset: 80;
    animation: checkmark-check 0.4s 0.4s ease forwards;
}

/* ---- Toast ---- */
#toast-container {
    position: fixed;
    top: var(--space-lg);
    right: var(--space-lg);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: 0.9375rem;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease, fadeOut 0.3s 2.7s ease forwards;
    max-width: 400px;
}

.toast-success { background: var(--color-success); color: white; }
.toast-error { background: var(--color-error); color: white; }
.toast-info { background: var(--color-info); color: white; }

@keyframes slideIn {
    from { opacity: 0; transform: translateX(100px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* ---- Login Page ---- */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: var(--space-lg);
    background: linear-gradient(135deg, var(--msh-red-dark) 0%, var(--msh-red-light) 100%);
}

.login-card {
    width: 100%;
    max-width: 420px;
    padding: var(--space-2xl);
    text-align: center;
}

.login-card .brand-text {
    font-size: 1.75rem;
    margin-bottom: var(--space-xs);
}

.login-card .brand-subtitle {
    margin-bottom: var(--space-2xl);
}

.login-card .form-group {
    text-align: left;
}

.login-card .btn {
    width: 100%;
    margin-top: var(--space-md);
}

.login-error {
    background: var(--color-error-bg);
    color: var(--color-error);
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    margin-bottom: var(--space-md);
    display: none;
}

.login-error.visible {
    display: block;
}

/* ---- Event Select ---- */
.event-select-page {
    min-height: 100vh;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-lg);
}

.event-card {
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.event-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.event-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--msh-red);
    margin-bottom: var(--space-sm);
}

.event-card-meta {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: var(--space-sm);
}

.event-card-stats {
    display: flex;
    gap: var(--space-lg);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid #F3F4F6;
}

.event-stat {
    text-align: center;
}

.event-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--msh-red);
}

.event-stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-card-actions {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    flex-wrap: wrap;
}

/* ---- Kiosk ---- */
.kiosk-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.kiosk-header {
    background: var(--msh-red);
    color: var(--msh-white);
    padding: var(--space-sm) var(--space-xl);
    text-align: center;
}

.kiosk-logo {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.kiosk-hero {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.kiosk-welcome {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--msh-red);
    margin-bottom: var(--space-sm);
}

.kiosk-event-name {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--msh-dark);
    margin-bottom: var(--space-xs);
}

.kiosk-event-meta {
    color: var(--msh-gray);
    font-size: 1rem;
}

.kiosk-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--space-xl);
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
}

.kiosk-search-wrapper {
    width: 100%;
    margin-bottom: var(--space-xl);
}

.kiosk-search-input {
    width: 100%;
    padding: 16px 24px;
    font-size: 1.5rem;
    border: 3px solid #E5E7EB;
    border-radius: var(--radius-lg);
    font-family: var(--font-body);
    text-align: center;
    transition: border-color 0.2s;
}

.kiosk-search-input:focus {
    outline: none;
    border-color: var(--msh-red);
    box-shadow: 0 0 0 4px rgba(168,53,58,0.15);
}

.kiosk-search-input::placeholder {
    color: #9CA3AF;
}

.kiosk-prompt {
    text-align: center;
    color: #9CA3AF;
    font-size: 1.125rem;
    margin-top: var(--space-2xl);
}

.kiosk-results {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Attendee cards in kiosk */
.attendee-card {
    background: var(--msh-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    animation: cardAppear 0.3s ease backwards;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.attendee-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.attendee-card.checked-in {
    border-left: 4px solid var(--color-success);
}

.attendee-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--msh-red);
    color: var(--msh-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.attendee-info {
    flex: 1;
    min-width: 0;
}

.attendee-name {
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--msh-dark);
}

.attendee-detail {
    color: #6B7280;
    font-size: 0.875rem;
}

.attendee-status {
    flex-shrink: 0;
    font-size: 0.8125rem;
    font-weight: 600;
}

.attendee-status.status-checked-in {
    color: var(--color-success);
}

/* ---- Check-in Confirmation Overlay ---- */
.checkin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(143,25,30,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.3s ease;
}

.checkin-confirm-card {
    background: var(--msh-white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-xl);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-xl);
    animation: slideUp 0.3s ease;
}

.checkin-confirm-card h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--msh-red);
    margin-bottom: var(--space-sm);
}

.checkin-confirm-card .attendee-detail {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
}

.checkin-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.checkin-success h2 {
    color: var(--color-success);
    font-family: var(--font-display);
    font-size: 1.75rem;
}

.checkin-success p {
    color: #6B7280;
    font-size: 1rem;
}

/* ---- Admin Dashboard ---- */
.admin-page {
    min-height: 100vh;
}

.admin-section-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--msh-red);
    margin-bottom: var(--space-lg);
}

/* ---- Event Summary Bar (Detail Page) ---- */
.event-summary {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-md) var(--space-lg);
    background: var(--msh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.event-summary-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.event-summary-label {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
}

.event-summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--msh-red);
}

/* ---- Attendee List (Admin) ---- */
.attendee-list-filters {
    display: flex;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border: 2px solid #E5E7EB;
    border-radius: var(--radius-full);
    background: var(--msh-white);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.filter-btn.active {
    background: var(--msh-red);
    color: var(--msh-white);
    border-color: var(--msh-red);
}

.filter-btn:hover:not(.active) {
    border-color: var(--msh-red-light);
    color: var(--msh-red);
}

.attendee-table {
    width: 100%;
    border-collapse: collapse;
}

.attendee-table th {
    text-align: left;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6B7280;
    border-bottom: 2px solid #E5E7EB;
}

.attendee-table td {
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid #F3F4F6;
    font-size: 0.9375rem;
}

.attendee-table tr:hover {
    background: #F9FAFB;
}

/* ---- Kiosk Footer ---- */
.kiosk-footer {
    text-align: center;
    padding: var(--space-md);
}

.kiosk-staff-btn {
    background: none;
    border: none;
    color: #9CA3AF;
    font-size: 0.75rem;
    cursor: pointer;
    font-family: var(--font-body);
    padding: 8px 16px;
}

/* ---- PIN Overlay ---- */
.pin-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    animation: fadeIn 0.2s ease;
    padding: var(--space-lg);
}

.pin-dialog {
    background: var(--msh-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: var(--space-xl);
    width: 100%;
    max-width: 340px;
    text-align: center;
    position: relative;
    animation: slideUp 0.3s ease;
}

.pin-dialog h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--msh-red);
    margin-bottom: var(--space-xs);
}

.pin-dialog p {
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: var(--space-lg);
}

.pin-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #6B7280;
    line-height: 1;
}

.pin-input {
    width: 100%;
    padding: 16px;
    font-size: 2rem;
    font-family: var(--font-body);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5em;
    border: 3px solid #E5E7EB;
    border-radius: var(--radius-md);
    background: var(--msh-white);
    color: var(--msh-dark);
    transition: border-color 0.2s;
    -webkit-appearance: none;
}

.pin-input:focus {
    outline: none;
    border-color: var(--msh-red);
    box-shadow: 0 0 0 3px rgba(168,53,58,0.1);
}

.pin-error {
    color: var(--color-error);
    font-size: 0.875rem;
    margin-top: var(--space-sm);
}

@keyframes pinShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-8px); }
    40%, 80% { transform: translateX(8px); }
}

.pin-shake {
    animation: pinShake 0.4s ease;
    border-color: var(--color-error) !important;
}

/* ---- User Management ---- */
.user-actions {
    display: flex;
    gap: var(--space-xs);
    flex-wrap: wrap;
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
    .page-content {
        padding: var(--space-md);
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .kiosk-search-input {
        font-size: 1.25rem;
        padding: 14px 20px;
    }

    .event-summary {
        gap: var(--space-md);
    }
}

@media (min-width: 1024px) {
    .kiosk-body {
        padding-top: var(--space-3xl);
    }
}

/* ---- Utility ---- */
.text-center { text-align: center; }
.text-muted { color: #6B7280; }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.hidden { display: none !important; }

/* ---- Empty State ---- */
.empty-state {
    text-align: center;
    padding: var(--space-3xl) var(--space-lg);
    color: #9CA3AF;
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: var(--space-md);
}

.empty-state h3 {
    font-size: 1.25rem;
    color: #6B7280;
    margin-bottom: var(--space-sm);
}

/* ---- Badge ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-success {
    background: var(--color-success-bg);
    color: var(--color-success);
}

.badge-warning {
    background: var(--color-warning-bg);
    color: var(--color-warning);
}

/* ---- Report Modal ---- */
.report-modal .modal {
    max-width: 650px;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.report-stat {
    text-align: center;
    padding: var(--space-md);
    background: #F9FAFB;
    border-radius: var(--radius-md);
}

.report-stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--msh-red);
}

.report-stat-label {
    font-size: 0.75rem;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.report-section {
    margin-bottom: var(--space-lg);
}

.report-section h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--msh-red);
}

.report-list {
    list-style: none;
    font-size: 0.9375rem;
}

.report-list li {
    padding: var(--space-xs) 0;
    border-bottom: 1px solid #F3F4F6;
}

.report-actions {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}
