@font-face {
    font-family: timeburner;
    src: url(/static/Timeburner.ttf);
}

@font-face {
    font-family: timeburner-bold;
    src: url(/static/TimeburnerBold.ttf);
}
/*
primary	            --color-primary	Primary brand color, The main color of your brand
primary-content	    --color-primary-content	Foreground content color to use on primary color

secondary	        --color-secondary	Secondary brand color, The optional, secondary color of your brand
secondary-content	--color-secondary-content	Foreground content color to use on secondary color

accent	            --color-accent	Accent brand color, The optional, accent color of your brand
accent-content	    --color-accent-content	Foreground content color to use on accent color

neutral	            --color-neutral	Neutral dark color, For not-saturated parts of UI
neutral-content	    --color-neutral-content	Foreground content color to use on neutral color

base-100	        --color-base-100	Base surface color of page, used for blank backgrounds
base-200	        --color-base-200	Base color, darker shade, to create elevations
base-300	        --color-base-300	Base color, even more darker shade, to create elevations
base-content	    --color-base-content	Foreground content color to use on base color

info	            --color-info	Info color, For informative/helpful messages
info-content	    --color-info-content	Foreground content color to use on info color
success     	    --color-success	Success color, For success/safe messages
success-content	    --color-success-content	Foreground content color to use on success color
warning     	    --color-warning	Warning color, For warning/caution messages
warning-content	    --color-warning-content	Foreground content color to use on warning color
error	            --color-error	Error color, For error/danger/destructive messages
error-content	    --color-error-content	Foreground content color to use on error color
*/
:root {
    --gradient: linear-gradient(90deg, rgba(194, 133, 112, 0.15), rgba(194, 133, 112, 0.05));
    --gradient-strong: linear-gradient(90deg, rgba(194, 133, 112, 0.65), rgba(194, 133, 112, 0.55));
    --color-primary: #C28570;
    --accent: #C28570; /* Accent color requested */
    --copper: #C28570;
    --copper-light: rgba(194, 133, 112, 0.52);
    --bg-2: var(--color-base-200);
    --bg: var(--color-base-100);
    --surface: var(--color-base-100);
    --muted: var(--color-base-content);
    --gap: 12px;
    --pad: 16px;
    --shadow: 0 6px 16px rgba(6, 10, 15, 0.08);
    --rounded: 9px;
    --glass: rgba(255, 255, 255, 0.6);
    --max-width: 1800px;
    /*font-family: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;*/
    font-family: 'Montserrat', sans-serif;
}

/* Reset & base */
* {
    box-sizing: border-box
}

html, body, #app {
    height: 100%
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--color-base-content);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
footer {
    background-color: var(--color-base-200);
    margin-top: 30px;
}

a {
    color: var(--accent);
    text-decoration: none
}

/* Layout */
.container {
    max-width: var(--max-width);
    /*margin: 28px auto;*/
    margin: 0px auto; /* todo check mobile header */
    padding: 20px;
}

.layout {
    display: grid;
    grid-template-columns:260px 1fr;
    gap: 20px;
    align-items: start;
}

/* Sidebar */
.sidebar {
    background: var(--color-base-200);
    border-radius: var(--rounded);
    padding: 18px;
    box-shadow: var(--shadow);
    height: calc(100vh - 96px);
    position: sticky;
    top: 38px;
    overflow: auto;
}

.sidebar button {
    margin-top: 8px;
}


.sidebar p {
    font-family: "Courier New", Courier, monospace;
    font-size: 13px;
    color: var(--muted);
}

.sidebar hr {
    color: var(--glass);
}

.card hr {
    color: var(--glass);
}

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

.brand h1 {
    color: var(--color-base-content);
}

.brand img {
    margin-top: 25px;
    max-width: 200px;
}

.subtitle {
    font-size: 0.8em;
    font-weight: 200;
}

/*.logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), #b96f5a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700
}*/

nav ul {
    list-style: none;
    padding: 0;
    margin: 0
}

nav li {
    margin: 8px 0
}

nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    border-radius: 40px;
    color: var(--muted);
}

nav a.active {
    background: linear-gradient(90deg, rgba(194, 133, 112, 0.12), rgba(194, 133, 112, 0.06));
    /*border-left: 3px solid var(--accent);*/
    padding-left: 8px
}

/* Tabs styling */
nav.tabs {
    display: flex;
    border-bottom: 1px solid var(--color-base-300);
    margin-bottom: 12px;
    justify-content: center;
    font-family: "Instrument Serif";
}

.tab-content {
    display: none;
    padding-top: 4px
}

.tab-content.active {
    display: block
}

a.tab-link.active {
    color: var(--accent);
    font-weight: bold;
    background-image: none;
    border-radius: 0px;
    border-bottom: 3px solid var(--accent);
    border-left: none;
    font-family: "Instrument Serif";
}

/* Top bar */
.topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px
}

.search {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-base-200);
    padding: 10px;
    border-radius: 999px;
    box-shadow: var(--shadow);
    min-width: 300px
}

.profile {
    display: flex;
    align-items: center;
    gap: 12px
}

.topbar .avatar {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), #b96f5a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700
}

/* Main content */
.main {
    min-height: 80vh;
}

.grid-cards {
    display: grid;
    grid-template-columns:repeat(auto-fit, minmax(400px, 1fr));
    gap: 16px;
    margin-bottom: 18px
}

.flex-cards {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns:repeat(auto-fit, minmax(1000px, 2fr));
    gap: 16px;
    margin-bottom: 18px;
    justify-content: center;
}

.card {
    background: var(--surface);
    padding: 16px;
    border-radius: var(--rounded);
    position: relative;
    display: flex;
    flex-direction: column;
    /*align-items: center;*/
    justify-content: center;
    text-align: center;
    transition: transform 0.2s;
    box-shadow: var(--shadow);
}

.kpi {
    font-size: 20px;
    font-weight: 700
}

.kpi-small {
    color: var(--muted);
    font-size: 13px
}

.table {
    font-family: "JetBrains Mono", monospace;
}

/*!* Table *!*/
/*.table {*/
/*    width: 100%;*/
/*    border-collapse: collapse;*/
/*    background: var(--surface);*/
/*    border-radius: var(--rounded);*/
/*    !*overflow: hidden;*!*/
/*    box-shadow: var(--shadow);*/
/*    font-family: "JetBrains Mono", "Courier New", Courier, monospace;*/
/*    overflow: visible; !* Drop downs only. May be wrong.*!*/
/*}*/

/*.table th, .table td {*/
/*    padding: 11px;*/
/*    text-align: left;*/
/*    border-bottom: 1px solid #f3f4f6*/
/*}*/

/*tr .toggleable {*/
/*    cursor: pointer;*/
/*}*/

/*tr .toggleable td:first-child {*/
/*    position: relative;*/
/*    padding-left: 20px; !* space for caret *!*/
/*}*/

/*tr .toggleable td:first-child::before {*/
/*    content: "\25B6"; !* right-pointing caret *!*/
/*    left: 5px;*/
/*    transition: transform 0.2s ease;*/
/*}*/

/*tr.open td:first-child::before {*/
/*    content: "\25BC"; !* down-pointing caret *!*/
/*}*/

/*.table thead th {*/
/*    background: linear-gradient(90deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.01));*/
/*    font-weight: 600*/
/*}*/

/*.table tr {*/
/*    position: relative;*/
/*}*/

/*.table tr:nth-child(odd) {*/

/*}*/

/*.table tr:hover {*/
/*    background-color: #e1e1e1;*/
/*}*/

/*.table .subth {*/
/*    font-weight: bold;*/
/*}*/


/*.table tr:hover #row-actions {*/
/*    visibility: visible;*/
/*}*/

/*.table tr img {*/
/*    max-width: 25px;*/
/*}*/

table.batch-data-table {
    font-family: "JetBrains Mono", "Courier New", Courier, monospace;

    font-size: 12px;
    text-align: left;
}

table.batch-data-table td.right {
    padding-left: 20px;
}

.subrow {
    background-color: var(--surface);
    /* visibility: hidden; */
    display: none;
    margin-left: 10px;
}

.subrow td {
    font-size: 12px;
    padding: 5px;
}

#current_volume {
    max-width: 250px;
    max-height: 100px;
}

.subsubrow {
    background-color: var(--color-base-300);
    /* visibility: hidden; */
    display: none;
}

.subsubrow td {
    padding: 0px;
}

.grid-2 {
    width: 95%;
    font-family: "JetBrains Mono", "Courier New", Courier, monospace;
    font-size: 15px;
    display: grid;
    grid-template-columns: 35% 65%; /* two equal columns */
    gap: 8px; /* spacing between cells */
    align-items: stretch; /* make cells same height in a row */
    margin-bottom: 16px;

    div {
        text-align: left;
        border-bottom: 2px dotted var(--bg-2);
        vertical-align: center;
    }

}

.grid-2 > div:nth-child(odd) {
    font-weight: bold;
}

.grid-2 h1 {
    text-align: center;
    width: 100%;

}

/* styling for demo */

.data-table {
    font-family: "JetBrains Mono", "Courier New", Courier, monospace;

    text-align: left;
    vertical-align: bottom;
    font-size: 13px;
    width: 90%;
    margin: auto;
    padding: 8px;
    margin-bottom: 40px;
    background-color: var(--surface);
}

.data-table th {
    border-bottom: 1px dotted var(--color-base-content);
}

.data-table td {
    vertical-align: bottom;
    border-bottom: 1px dotted var(--color-base-content);
}

.data-table .left {
    border-collapse: collapse;
    width: 20%;
    vertical-align: bottom;
}

.data-table .right {
    width: 70%;
    text-align: center;
}

/* Forms */
.form-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.form-label {
    font-weight: bold;
}

.form-error {
    color: var(--danger);
}

.input, .select, .textarea {
    padding: 10px;
    border-radius: 8px;
    border: 1px solid var(--color-base-300);
    background: var(--color-base-100);
    color: var(--color-base-content);
    min-width: 0
}


.btn {
    /*    padding: 10px 14px;*/
    /*    border-radius: 10px;*/
    /*    border: 0;*/
    /*    background: var(--accent);*/
    /*    color: white;*/
    font-weight: 600;
    /*    cursor: pointer;*/
    /*    box-shadow: 0 6px 18px rgba(194, 133, 112, 0.12);*/
    /*    transition: transform 0.2s;*/
}

/*.btn.ghost {*/
/*    background: transparent;*/
/*    border: 1px solid #e6e6e9;*/
/*    color: var(--muted)*/
/*}*/

/*.btn.wide {*/
/*    width: 100%;*/
/*}*/

/*.btn:hover, .btn:active {*/
/*    background-color: var(--copper-light);*/
/*    cursor: pointer;*/
/*}*/

/* Small utilities */
.muted {
    color: var(--muted)
}

.pill {
    display: inline-block;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(6, 10, 15, 0.04);
    font-size: 13px
}

/* Form */
/*fieldset {*/
/*    border: none;*/
/*    padding: 0;*/
/*    margin: 0 0 16px 0;*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    gap: 12px*/
/*}*/

label {
    font-weight: 600;
    color: inherit;
}

/* Use daisyui defaults */
/*input, select, textarea {*/
/*    padding: 10px;*/
/*    border-radius: 8px;*/
/*    border: 1px solid #e6e6e9;*/
/*    background: #fff;*/
/*    font-size: 14px;*/
/*    width: 100%*/
/*}*/

.list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.header-card {
    background: var(--surface);
    color: var(--accent);
    padding: 20px;
    border-radius: var(--rounded);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 100px;
    max-width: 100%;
}

.header-card h1 {
    font-size: 32px;
    font-family: "Instrument Serif";
}

.header-card h2 {
    font-size: 18px;
    font-weight: 300;
    color: var(--muted);
}


/* Responsive */
@media (max-width: 900px) {
    .layout {
        grid-template-columns:1fr;
    }

<    .sidebar {
    height: auto;
    position: relative;
    top: 0
}
}

/* Own additions */
h1 {
    font-family: "Instrument Serif";
    font-size: 2rem;
    font-weight: bold;
}

h2 {
    font-size: 1.5rem;
}

.nav-icon {
    display: inline-block;
    max-width: 25px;
}

.logo {
    max-width: 80px;
    display: block;
}

.card {
    max-width: 100%;
}

.hero {
    background: var(--gradient-strong);
    padding: 24px;
    border-radius: var(--rounded);
    box-shadow: var(--shadow);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    max-width: 100%;
    position: sticky;
    top: 20px;
    z-index: 999;
    transition: all 0.3s ease;
}

.hero-content h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 700
}

.hero-content p {
    margin: 4px 0 0 0;
    font-size: 14px;
    color: var(--muted)
}

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


/*!* --- Modal Overlay --- *!*/
/*.modal {*/
/*    position: fixed;*

 */
/*    inset: 0;*/
/*    background: var(--backdrop);*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    align-items: center;*/
/*    z-index: 50;*/
/*    opacity: 0;*/
/*    pointer-events: none;*/
/*    transition: opacity 0.2s ease;*/
/*}*/

/*.modal.show {*/
/*    opacity: 1;*/
/*    pointer-events: auto;*/
/*}*/

/*!* --- Modal Window --- *!*/
/*.modal-content {*/
/*    background: var(--surface);*/
/*    border-radius: 0.75rem;*/
/*    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);*/
/*    width: 90%;*/
/*    max-width: 500px;*/
/*    padding: 1.5rem;*/
/*    animation: scaleIn 0.2s ease forwards;*/
/*    transform: scale(0.95);*/
/*}*/

/*.modal-content.wide {*/
/*    max-width: 900px;*/
/*}*/

/*!* --- Close Button (optional) --- *!*/
/*.modal-close {*/
/*    position: absolute;*/
/*    top: 1rem;*/
/*    right: 1rem;*/
/*    background: none;*/
/*    border: none;*/
/*    font-size: 1.5rem;*/
/*    cursor: pointer;*/
/*    color: #555;*/
/*}*/

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-6px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}


.hero-section a {
    color: var(--shadow);
    font-family: "Instrument Serif";
}


.kpi-img {
    float: right;
}

.glyph {
    position: absolute;
    top: -10px;
    right: -10px;
    max-width: 60px;
    background-color: var(--surface);
    border-radius: 20%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 5px;
}

/* Flash messages */
.flash-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.flash-message {
    padding: 14px 18px;
    border-radius: var(--rounded);
    box-shadow: var(--shadow);
    font-weight: 500;
}

.flash-success {
    background: var(--success);
    color: white
}

.flash-error {
    background: var(--error);
    color: white
}

.flash-close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-weight: bold;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--bg)
}


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

.hero-notice {
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: var(--rounded);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    box-shadow: var(--shadow);

    img {
        max-width: 30px;
    }
}

.hero-notice .warn {
    color: var(--danger)
}

.hero-notice .info {
    color: var(--shadow)
}

.hero-actions {
    display: flex;
    gap: 10px
}

/*.dropdown {*/
/*    position: relative;*/
/*}*/

/* Dropdown */
.btn .drop {
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
'' cursor: pointer;
    transition: none !important;
}

.btn.warn {
    background-color: var(--danger);
}

.btn.mini {
    padding: 4px 8px;
}

/*.drop:hover {*/
/*    transform: none;*/
/*    cursor: pointer;*/
/*}*/

/*!* Dropdown content *!*/
/*.dropdown-content {*/
/*    !*background: linear-gradient(90deg, rgba(194, 133, 112, 0.15), rgba(194, 133, 112, 0.05));*!*/
/*    display: none;*/
/*    position: absolute;*/
/*    background-color: var(--surface);*/
/*    min-width: 200px;*/
/*    font-size: 12px;*/
/*    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);*/
/*    z-index: 999;*/
/*    right: 0;*/
/*    border-radius: var(--rounded);*/
/*}*/

/*!* Links inside dropdown content *!*/
/*.dropdown-content a {*/
/*    color: black;*/
/*    padding: 12px 16px;*/
/*    text-decoration: none;*/
/*    display: block;*/
/*    border-bottom: 1px solid var(--copper-light);*/
/*    border-radius: var(--rounded);*/
/*}*/

/*!* Change color of dropdown links on hover *!*/
/*.dropdown-content a:hover {*/
/*    background-color: #f1f1f1;*/

/*    border-radius: var(--rounded);*/
/*}*/

/*!* Show the dropdown content on hover *!*/
/*.dropdown:hover .dropdown-content {*/
/*    display: block;*/
/*}*/

/*!* Change background color of dropdown button on hover *!*/
/*.dropdown:hover .dropbtn {*/
/*    background-color: #3e8e41;*/
/*}*/

.icon {
    max-width: 25px;
    border: none;
    box-shadow: none;
}

/*.dropdown-content a {*/
/*    display: flex;*/

/*    align-items: center;*/
/*    gap: 10px;*/
/*}*/


.batch_card {
    /*aspect-ratio: 3 / 4; !* enforces the 3:4 ratio *!*/
    background: var(--surface);
    border-radius: var(--rounded);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.12);
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-base-200);
}


/* Top row: left-aligned title */
.batch_card__top {
    padding: calc(var(--pad) / 1.5) var(--pad);
    display: flex;
    align-items: center;
    justify-content: flex-start; /* left-aligned */
    gap: 8px;
    background: color-mix(in srgb, var(--color-primary) 10%, transparent);
}

.batch_card__top .title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent);
    margin: 0;
}

/* Middle section: h1 and h2 stacked */
.batch_card__body {
    flex: 1; /* expands to fill available space */
    padding: var(--pad);
    display: flex;
    /*justify-content: center; !* centers vertically *!*/
    gap: 6px;

    div {
        flex-grow: 1;
        flex-direction: column;
        /*border: 1px solid rgba(16, 24, 40, 0.06);*/
    }
}

.batch_card__body h1 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--color-base-content);
}

.batch_card__body h2 {
    margin: 0;
    font-size: 1rem;
    color: var(--muted);
    opacity: 0.7;
    font-weight: 600;
}

/* Bottom row: up to four data elements */
.batch_card__bottom {
    padding: calc(var(--pad) / 1.2);
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* max 4 columns */
    gap: var(--gap);
    align-items: center;
    border-top: 1px solid var(--color-base-200);
    background: var(--color-base-200);
    opacity: 0.8;
}

.data-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 6px;
}

.data-item .value {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-base-content);
}

.data-item .label {
    font-size: 0.75rem;
    color: var(--muted);
    opacity: 0.7;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* DaisyUI overridexzs*/
details > summary {
    list-style: none;
}

details > summary::-webkit-details-marker {
    display: none;
}

details > summary:hover {
    cursor: pointer;
}


.modal-box {
    max-width: 900px !important;
}

.fab.left {
    inset-inline-start: 10px !important;
    inset-inline-end: unset;

    text-align: left;
    justify-content: left;
    margin-left: 0px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.fab {
    bottom: 10px;
}

/* Navigator container */
#navigator {
    z-index: 9999;
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    background: var(--color-base-200);
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: height 0.4s ease;
}

/* Navigation items (initially hidden) */
.nav-items {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 0;
    overflow: hidden;
    text-align: left;
    transition: max-height 0.4s ease;
    background: var(--color-base-200);
    border-radius: 20px;
}

.nav-items a {
    text-decoration: none;
    color: var(--color-base-content);
    padding: 12px 0;
    width: 100%;
    text-align: center;
    border-top: 1px solid var(--color-base-300);
    transition: background 0.3s;
}

.nav-items a:hover {
    background: var(--color-base-300);
}

/* Bottom row */
.bottom-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.hamburger {
    width: 30px;
    height: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: var(--color-base-content);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.middle-text {
    flex-grow: 1;
    text-align: center;
    font-weight: bold;
    font-size: 12px;
}

.right-button {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
}

/* Expanded state */
#navigator.expanded .nav-items {
    max-height: 500px; /* adjust as needed */
}

/* Hamburger animation when open */
#navigator.expanded .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#navigator.expanded .hamburger span:nth-child(2) {
    opacity: 0;
}

#navigator.expanded .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* optional: stack to one column on small screens */
/* MOBILE */
@media (max-width: 600px) {
    .grid-2 {
        grid-template-columns: 1fr;
        font-size: 0.7rem;
    }

    .glyph {
        max-width: 40px;
    }

    .report-hero {
        h1 {
            font-size: 1.4rem;
        }

        h2 {

            font-size: 1.1rem;
        }
    }

    .batch_card {
        max-width: 100%;
    }

    .header-card {
        flex-direction: column;
        max-height: unset;
        align-items: unset;
    }

    .hero {
        flex-direction: column;
    }

    .card {
        align-items: unset;
    }

    .header-card {
        h1 {
            font-size: 1.4rem;
        }

        h2 {
            font-size: 0.8rem;
        }
    }

    .hero {
        max-height: 200px;
        position: sticky;
        top: 10px;
        z-index: 99;
    }

    .hero-content {
        display: none;
    }
}

.modal-box {
    background-color: var(--surface);
}

#hx-modal {
    h2 {
        font-size: 2.2rem;
        font-family: "Instrument Serif";
    }
    input, textarea, select {
        background-color: var(--surface);
    }
}