/* ==========================================================================
   TheRandomEngine — Modern Dark Design System
   Consolidated stylesheet: tokens + global + component styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   DESIGN TOKENS — Light Mode (default)
   -------------------------------------------------------------------------- */
:root {
    color-scheme: light dark;

    /* Typography */
    --font-heading: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
    --font-body: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;

    /* Brand / Accent */
    --color-brand: #EA580C;
    --color-brand-hover: #D35400;
    --color-brand-soft: rgba(234, 88, 12, 0.12);
    --color-accent-indigo: #6366F1;

    /* Surfaces */
    --app-bg: #FAFAFA;
    --app-surface: #FFFFFF;
    --app-surface-alt: #F4F4F5;

    /* Text */
    --app-text: #18181B;
    --app-text-muted: #71717A;

    /* Borders */
    --app-border: #E4E4E7;
    --app-border-soft: rgba(24, 24, 27, 0.08);

    /* Glassmorphism */
    --app-glass-bg: rgba(255, 255, 255, 0.7);
    --app-glass-border: rgba(0, 0, 0, 0.06);
    --app-glass-blur: blur(20px);

    /* Shadows */
    --app-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --app-shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --app-shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --app-shadow-glow: 0 0 20px rgba(234,88,12,0.15);

    /* Radii */
    --app-radius-sm: 8px;
    --app-radius-md: 12px;
    --app-radius-lg: 16px;
    --app-radius-xl: 20px;

    /* Easing */
    --app-easing: cubic-bezier(0.16, 1, 0.3, 1);

    /* Destructive */
    --app-destructive: #DC2626;

    /* Dice */
    --dice-size: 64px;
    --dice-dot-size: 10px;
    --dice-bg: #FFFFFF;
    --dice-border: #E2E8F0;
    --dice-dot: #EA580C;

    /* Coin */
    --coin-size: 80px;
    --coin-heads-bg: linear-gradient(135deg, #F97316, #EA580C);
    --coin-tails-bg: linear-gradient(135deg, #6366F1, #4F46E5);
    --coin-text: #FFFFFF;

    /* Slot Machine */
    --slot-bg: #1E1B4B;
    --slot-text: #F8FAFC;
    --slot-digit-width: 2.4rem;

}

/* --------------------------------------------------------------------------
   DESIGN TOKENS — Dark Mode
   -------------------------------------------------------------------------- */
.dark {
    color-scheme: dark;

    --color-brand: #F97316;
    --color-brand-hover: #FB923C;
    --color-brand-soft: rgba(249, 115, 22, 0.15);
    --color-accent-indigo: #818CF8;

    --app-bg: #0A0A0B;
    --app-surface: #18181B;
    --app-surface-alt: #27272A;

    --app-text: #FAFAFA;
    --app-text-muted: #A1A1AA;

    --app-border: rgba(255, 255, 255, 0.08);
    --app-border-soft: rgba(255, 255, 255, 0.05);

    --app-glass-bg: rgba(26, 24, 48, 0.7);
    --app-glass-border: rgba(255, 255, 255, 0.08);

    --app-shadow-sm: 0 1px 2px rgba(0,0,0,0.3);
    --app-shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --app-shadow-lg: 0 8px 24px rgba(0,0,0,0.5);
    --app-shadow-glow: 0 0 24px rgba(249,115,22,0.2);

    --dice-bg: #27272A;
    --dice-border: rgba(255, 255, 255, 0.1);
    --dice-dot: #F97316;

    --slot-bg: #0A0A0B;
    --slot-text: #F8FAFC;
}

/* --------------------------------------------------------------------------
   THEME TOGGLE GLYPHS
   -------------------------------------------------------------------------- */
.theme-toggle-glyph {
    display: none;
}

:root:not([data-theme]) .theme-toggle-glyph[data-mode="system"],
:root[data-theme="light"] .theme-toggle-glyph[data-mode="light"],
:root[data-theme="dark"] .theme-toggle-glyph[data-mode="dark"] {
    display: inline;
}

/* --------------------------------------------------------------------------
   GLOBAL RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background: var(--app-bg);
    color: var(--app-text);
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    line-height: 1.3;
    color: var(--app-text);
}

h1:focus, h2:focus, h3:focus, h4:focus, h5:focus, h6:focus {
    outline: none;
}

a {
    color: var(--color-brand);
    text-decoration: none;
    transition: color 150ms ease;
}

a:hover {
    color: var(--color-brand-hover);
}

code {
    font-family: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
    background: var(--app-surface-alt);
    padding: 0.15em 0.4em;
    border-radius: var(--app-radius-sm);
    font-size: 0.9em;
}

/* --------------------------------------------------------------------------
   BLAZOR ERROR UI
   -------------------------------------------------------------------------- */
#blazor-error-ui {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

#blazor-error-ui .dismiss {
    cursor: pointer;
    position: absolute;
    right: 0.75rem;
    top: 0.5rem;
}

/* --------------------------------------------------------------------------
   FLUENTUI VALIDATION (Blazor defaults)
   -------------------------------------------------------------------------- */
.valid.modified:not([type=checkbox]) {
    outline: 1px solid var(--color-brand);
}

.invalid {
    outline: 1px solid var(--app-destructive);
}

.validation-message {
    color: var(--app-destructive);
}

.blazor-error-boundary {
    background: #b32121;
    padding: 1rem;
    color: white;
}

.blazor-error-boundary::after {
    content: "An error has occurred.";
}

/* --------------------------------------------------------------------------
   GENERATOR PAGE (shared across all generator pages)
   -------------------------------------------------------------------------- */
.generator-page {
    max-width: 800px;
}

.generator-page-header {
    margin-bottom: 1.5rem;
}

.generator-page-header h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.generator-page-intro {
    max-width: 70ch;
    line-height: 1.7;
    color: var(--app-text-muted);
}

.generator-page-intro p {
    margin: 0 0 1rem;
}

.generator-page-widget {
    margin-bottom: 2rem;
}

.generator-faq,
.related-generators {
    margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   GENERATOR RESULT CARD
   -------------------------------------------------------------------------- */
.generator-result-card {
    margin-bottom: 1rem;
    border-radius: var(--app-radius-md);
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    border-top: 3px solid var(--color-brand);
    box-shadow: var(--app-shadow-sm);
    padding: 1rem;
    animation: resultFadeIn 300ms var(--app-easing) both;
}

.generator-result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 0.75rem;
}

.generator-result-card-body {
    word-break: break-word;
}

@keyframes resultFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* --------------------------------------------------------------------------
   GENERATOR CARD
   -------------------------------------------------------------------------- */
.generator-card {
    border-radius: var(--app-radius-md);
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    box-shadow: var(--app-shadow-sm);
    transition: transform 200ms var(--app-easing), box-shadow 200ms var(--app-easing), border-color 200ms ease, box-shadow 200ms ease;
    height: 100%;
}

.generator-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--app-shadow-md), var(--app-shadow-glow);
    border-color: var(--color-brand);
}

.generator-card:active {
    transform: scale(0.97);
}

.generator-card-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 14px 12px;
    min-width: 160px;
    cursor: pointer;
}

.generator-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: var(--app-radius-sm);
    background: var(--color-brand-soft);
    font-size: 1.25rem;
    line-height: 1;
}

.generator-card-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.generator-card-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--app-text);
}

.generator-card-caption {
    font-size: 0.8rem;
    color: var(--app-text-muted);
}

.generator-card--compact .generator-card-link {
    padding: 8px 10px;
    gap: 8px;
    min-width: 0;
}

.generator-card--compact .generator-card-icon {
    width: 28px;
    height: 28px;
    font-size: 1rem;
}

.generator-card--compact .generator-card-title {
    font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   NAME GENERATOR
   -------------------------------------------------------------------------- */
.name-result {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--app-text);
}

.name-result-caption {
    color: var(--app-text-muted);
    font-size: 0.85rem;
    margin-top: 0.25rem;
}

/* --------------------------------------------------------------------------
   RANDOM NUMBER GENERATOR
   -------------------------------------------------------------------------- */
.random-number-result {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--font-heading);
    color: var(--color-brand);
}

/* --------------------------------------------------------------------------
   DICE ROLL — VISUAL DICE FACES
   -------------------------------------------------------------------------- */
.dice-results {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: flex-start;
}

.dice {
    width: var(--dice-size);
    height: var(--dice-size);
    background: var(--dice-bg);
    border: 2px solid var(--dice-border);
    border-radius: var(--app-radius-md);
    display: grid;
    padding: 8px;
    box-shadow: var(--app-shadow-md);
    perspective: 600px;
    transition: transform 300ms var(--app-easing);
}

.dice.rolling {
    animation: diceRoll 600ms var(--app-easing);
}

@keyframes diceRoll {
    0% { transform: rotateX(0deg) rotateY(0deg) scale(1); }
    20% { transform: rotateX(180deg) rotateY(90deg) scale(0.9); }
    40% { transform: rotateX(360deg) rotateY(180deg) scale(1.05); }
    60% { transform: rotateX(540deg) rotateY(270deg) scale(0.95); }
    80% { transform: rotateX(680deg) rotateY(350deg) scale(1.02); }
    100% { transform: rotateX(720deg) rotateY(360deg) scale(1); }
}

.dice.landed {
    animation: diceLand 300ms var(--app-easing);
}

@keyframes diceLand {
    0% { transform: scale(1.08); }
    50% { transform: scale(0.96); }
    100% { transform: scale(1); }
}

/* d6 dot patterns — 3x3 grid */
.dice--d6 {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
}

.dice-dot {
    width: var(--dice-dot-size);
    height: var(--dice-dot-size);
    border-radius: 50%;
    background: var(--dice-dot);
    align-self: center;
    justify-self: center;
}

.dice-dot.empty {
    background: transparent;
}

/* d4 — triangle */
.dice--d4 {
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 5%, 5% 95%, 95% 95%);
    border-radius: 0;
    border: none;
    background: var(--dice-bg);
    border: 2px solid var(--dice-border);
    position: relative;
}

.dice--d4::before {
    content: "";
    position: absolute;
    inset: 0;
    clip-path: polygon(50% 5%, 5% 95%, 95% 95%);
    background: var(--dice-bg);
    border: 2px solid var(--dice-border);
    z-index: -1;
}

.dice--d4 .dice-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dice-dot);
    margin-top: 10%;
}

/* d8 — diamond */
.dice--d8 {
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    border-radius: 0;
    border: none;
    position: relative;
}

.dice--d8 .dice-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dice-dot);
}

/* d10 — pentagon */
.dice--d10 {
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
    border-radius: 0;
    border: none;
    position: relative;
}

.dice--d10 .dice-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dice-dot);
    margin-top: 5%;
}

/* d12 — dodecagon */
.dice--d12 {
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 0%, 80% 10%, 100% 35%, 100% 70%, 80% 95%, 50% 100%, 20% 95%, 0% 70%, 0% 35%, 20% 10%);
    border-radius: 0;
    border: none;
    position: relative;
}

.dice--d12 .dice-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dice-dot);
}

/* d20 — icosahedron (triangle) */
.dice--d20 {
    display: flex;
    align-items: center;
    justify-content: center;
    clip-path: polygon(50% 5%, 5% 95%, 95% 95%);
    border-radius: 0;
    border: none;
    position: relative;
    width: calc(var(--dice-size) * 1.1);
    height: calc(var(--dice-size) * 1.1);
}

.dice--d20 .dice-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dice-dot);
    margin-top: 12%;
}

/* d100 — percentage display */
.dice--d100 {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px solid var(--dice-border);
}

.dice--d100 .dice-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dice-dot);
}

/* generic fallback — any custom side count without a dedicated shape (e.g. d3, d7, d15) */
.dice--generic {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dice--generic .dice-number {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dice-dot);
}

.dice-total {
    margin-top: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--app-text);
}

.dice-total span {
    color: var(--color-brand);
}

.dice-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.dice-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--app-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   COIN FLIP — 3D COIN
   -------------------------------------------------------------------------- */
.coin-results {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-start;
}

.coin-wrapper {
    /* Auto height (not a fixed height equal to the coin) so the "Heads"/"Tails" label below
       the coin is included in this wrapper's box instead of overflowing it — with a fixed
       height, flex-wrap rows only reserved space for the coin itself, so on multi-row batches
       the next row's coins would overlap and hide the label text underneath. */
    perspective: 800px;
    width: var(--coin-size);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.coin {
    width: var(--coin-size);
    height: var(--coin-size);
    flex-shrink: 0;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.1s;
}

.coin.flipping {
    animation: coinFlip 1000ms var(--app-easing);
}

.coin.heads-landed {
    transform: rotateY(0deg);
}

.coin.tails-landed {
    transform: rotateY(180deg);
}

@keyframes coinFlip {
    0% { transform: rotateY(0deg) translateY(0); }
    25% { transform: rotateY(540deg) translateY(-30px); }
    50% { transform: rotateY(1080deg) translateY(0); }
    75% { transform: rotateY(1620deg) translateY(-15px); }
    100% { transform: rotateY(var(--coin-final-rotation, 0deg)) translateY(0); }
}

.coin-face {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-heading);
    backface-visibility: hidden;
    box-shadow: var(--app-shadow-md), inset 0 2px 4px rgba(255,255,255,0.2);
}

.coin-heads {
    background: var(--coin-heads-bg);
    color: var(--coin-text);
}

.coin-tails {
    background: var(--coin-tails-bg);
    color: var(--coin-text);
    transform: rotateY(180deg);
}

.coin-label {
    text-align: center;
    margin-top: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--app-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.coin-flip-summary {
    margin-top: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--app-text);
}

/* --------------------------------------------------------------------------
   RANDOM NUMBER — SLOT MACHINE
   -------------------------------------------------------------------------- */
.slot-machine {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 16px 24px;
    background: var(--slot-bg);
    border-radius: var(--app-radius-lg);
    box-shadow: var(--app-shadow-lg), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}

.slot-reel {
    width: var(--slot-digit-width);
    height: 3.2rem;
    overflow: hidden;
    position: relative;
    border-radius: var(--app-radius-sm);
    background: rgba(0, 0, 0, 0.2);
}

.slot-reel-inner {
    display: flex;
    flex-direction: column;
    transition: transform 400ms var(--app-easing);
}

.slot-reel-inner.rolling {
    animation: slotRoll 500ms linear infinite;
}

@keyframes slotRoll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-3.2rem); }
}

.slot-digit {
    width: var(--slot-digit-width);
    height: 3.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--slot-text);
}

.slot-digit.negative {
    font-size: 1.5rem;
    width: calc(var(--slot-digit-width) * 0.7);
    color: var(--app-destructive);
}

.slot-comma {
    width: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--slot-text);
    opacity: 0.5;
}

.slot-separator {
    width: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-brand);
}

/* --------------------------------------------------------------------------
   QR CODE
   -------------------------------------------------------------------------- */
.qr-code-empty-state {
    padding: 1.5rem;
    border-radius: var(--app-radius-md);
    background: var(--app-surface-alt);
    color: var(--app-text-muted);
    text-align: center;
    border: 1px dashed var(--app-border);
}

.qr-code-result img {
    border-radius: var(--app-radius-md);
    box-shadow: var(--app-shadow-md);
}

/* --------------------------------------------------------------------------
   FAQ ACCORDION
   -------------------------------------------------------------------------- */
.generator-faq h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.generator-faq details {
    border-radius: var(--app-radius-md);
    margin-bottom: 8px;
    background: var(--app-surface);
    border: 1px solid var(--app-border);
    overflow: hidden;
}

.generator-faq details[open] {
    box-shadow: var(--app-shadow-sm);
}

.generator-faq summary {
    padding: 12px 16px;
    cursor: pointer;
    font-weight: 500;
}

.generator-faq details[open] summary {
    border-bottom: 1px solid var(--app-border);
}

.generator-faq details p {
    padding: 12px 16px;
    margin: 0;
    line-height: 1.7;
    color: var(--app-text-muted);
}

/* --------------------------------------------------------------------------
   RELATED GENERATORS
   -------------------------------------------------------------------------- */
.related-generators h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
}

/* --------------------------------------------------------------------------
    TOAST ANIMATIONS
    -------------------------------------------------------------------------- */
@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateX(100%) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* --------------------------------------------------------------------------
    PAGE TRANSITIONS
    -------------------------------------------------------------------------- */
@view-transition {
    navigation: auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* --------------------------------------------------------------------------
    ANIMATION UTILITY CLASSES
    -------------------------------------------------------------------------- */
@keyframes breathe {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.03); }
}

@media (prefers-reduced-motion: no-preference) {
    .empty-state-breathe {
        animation: breathe 3s ease-in-out infinite;
    }
}
.animate-fade-in-up {
    animation: fadeInUp 400ms var(--app-easing, cubic-bezier(0.16, 1, 0.3, 1)) both;
}

.animate-fade-in-scale {
    animation: fadeInScale 300ms var(--app-easing, cubic-bezier(0.16, 1, 0.3, 1)) both;
}

/* Stagger entrance: set --stagger-base on parent, --i on each child */
@media (prefers-reduced-motion: no-preference) {
    .animate-fade-in-up {
        animation-delay: calc(var(--stagger-base, 60ms) * var(--i, 0));
    }
}

/* --------------------------------------------------------------------------
    REDUCED MOTION
    -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .dice.rolling,
    .coin.flipping,
    .slot-reel-inner.rolling {
        animation: none !important;
    }
}

/* --------------------------------------------------------------------------
   FOCUS STATES — Accessibility
   -------------------------------------------------------------------------- */
:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: 2px;
}


/* --------------------------------------------------------------------------
   RESPONSIVE — Mobile First
   -------------------------------------------------------------------------- */

/* Small phones (375px+) */
@media (max-width: 480px) {
    .dice {
        --dice-size: 52px;
    }

    .coin {
        --coin-size: 64px;
    }
}

/* --------------------------------------------------------------------------
   PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
    body {
        background: white;
        color: black;
    }
}

