:root {
    --wolt-blue: #009de0;
    --wolt-dark-blue: #0077b3;
    --wolt-light-blue: #e6f5fc;
    --wolt-bg: #f5f7fa;
    --wolt-card-bg: #ffffff;
    --wolt-text: #212529;
    --wolt-muted: #6c757d;
    --sidenav-width: 250px;
}

* { box-sizing: border-box; }

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--wolt-bg);
    margin: 0;
    color: var(--wolt-text);
}

/* Sidenav */
.sidenav {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--sidenav-width);
    height: 100dvh;
    background: #1a1f36;
    color: #fff;
    overflow-y: auto;
    z-index: 1040;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.sidenav-brand {
    padding: 0.95rem 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #fff;
}

.sidenav-brand .brand-icon,
.sidenav-brand .brand-icon-img {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    flex-shrink: 0;
}

.sidenav-brand .brand-icon {
    background: var(--wolt-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.sidenav-brand .brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.2;
}

.sidenav-brand .brand-title {
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
}

.sidenav-brand .brand-author {
    font-weight: 500;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
}

.sidenav-brand span {
    font-weight: 600;
    font-size: 1.05rem;
}

.sidenav-nav {
    list-style: none;
    padding: 0.35rem 0 0.75rem;
    margin: 0;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
}

.sidenav-nav li a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.15s;
    border-left: 3px solid transparent;
}

.sidenav-nav li a:hover,
.sidenav-nav li a.active {
    background: rgba(255,255,255,0.06);
    color: #fff;
    border-left-color: var(--wolt-blue);
}

.sidenav-nav li a .nav-icon {
    width: 20px;
    text-align: center;
    opacity: 0.75;
}

.sidenav-section {
    padding: 0.75rem 1.25rem 0.35rem;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.72);
    font-weight: 800;
}

/* Make the first "Dashboards" header sit closer to the brand logo */
.sidenav-nav > .sidenav-section:first-child {
    padding-top: 0.35rem;
}

/* Main content */
.main-content {
    margin-left: var(--sidenav-width);
    min-height: 100vh;
}

.topbar {
    height: 56px;
    background: var(--wolt-card-bg);
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    position: sticky;
    top: 0;
    z-index: 1030;
}

.topbar-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--wolt-text);
}

.page-content {
    padding: 1.5rem;
}

/* Cards */
.metric-card {
    background: var(--wolt-card-bg);
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.metric-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.06); }

/* Resource / explorer cards (datasets, submission) */
.resource-card {
    background: var(--wolt-card-bg);
    border-radius: 12px;
    padding: 1.25rem 1rem;
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.05);
    transition: box-shadow 0.2s, border-color 0.2s, background-color 0.2s;
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
}

@keyframes resource-card-shake {
    0%   { transform: translateX(0); }
    15%  { transform: translateX(-4px); }
    30%  { transform: translateX(4px); }
    45%  { transform: translateX(-3px); }
    60%  { transform: translateX(3px); }
    75%  { transform: translateX(-2px); }
    100% { transform: translateX(0); }
}

a:hover .resource-card,
.resource-card:hover {
    background: var(--wolt-light-blue);
    border-color: var(--wolt-blue);
    box-shadow: 0 6px 18px rgba(0, 157, 224, 0.22);
    /* Delayed so the shake only fires on a deliberate hover, not when the
       pointer sweeps across the grid. */
    animation: resource-card-shake 0.45s ease-in-out 0.15s;
}

a:focus-visible .resource-card {
    outline: 2px solid var(--wolt-blue);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    a:hover .resource-card,
    .resource-card:hover {
        animation: none;
    }
}

.resource-card .resource-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--wolt-text);
    word-break: break-word;
}

.resource-card .resource-meta {
    font-size: 0.82rem;
    color: var(--wolt-muted);
}

.resource-card .resource-value {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--wolt-blue);
    line-height: 1.2;
}

.resource-card .resource-stats {
    display: flex;
    flex-wrap: nowrap;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    font-size: 0.88rem;
    color: var(--wolt-muted);
    white-space: nowrap;
}

.resource-card .resource-stats .resource-stat-num {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--wolt-blue);
    line-height: 1.2;
}

.submission-image-preview {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.file-section {
    margin-bottom: 0.5rem;
}

.file-section-title,
.section-heading,
.chart-card > h5,
.chart-card h5.section-heading {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--wolt-dark-blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin: 0 0 0.85rem;
    text-align: center;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    background: linear-gradient(90deg, rgba(0, 157, 224, 0.18) 0%, rgba(0, 119, 179, 0.10) 100%);
    border: 1px solid rgba(0, 157, 224, 0.28);
}

.file-section-divider {
    border: 0;
    border-top: 1.5px solid #cbd5e1;
    margin: 1.5rem 0;
}

/* Centered card grids — incomplete last row stays centred */
.centered-card-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    align-items: stretch;
}

.centered-card-grid.align-start {
    justify-content: flex-start;
}

.centered-card-grid > .grid-card-item {
    flex: 0 1 calc(33.333% - 0.75rem);
    max-width: calc(33.333% - 0.75rem);
    min-width: min(100%, 300px);
    display: flex;
}

.centered-card-grid > .grid-card-item > a,
.centered-card-grid > .grid-card-item > .metric-card,
.centered-card-grid > .grid-card-item > .resource-card {
    width: 100%;
    display: block;
    height: 100%;
}

@media (max-width: 991.98px) {
    .centered-card-grid > .grid-card-item {
        flex: 0 1 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .centered-card-grid > .grid-card-item {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

.centered-card-grid.kpi-grid > .grid-card-item {
    flex: 0 1 calc(16.666% - 0.75rem);
    max-width: calc(16.666% - 0.75rem);
    min-width: min(100%, 150px);
}

@media (max-width: 991.98px) {
    .centered-card-grid.kpi-grid > .grid-card-item {
        flex: 0 1 calc(33.333% - 0.75rem);
        max-width: calc(33.333% - 0.75rem);
    }
}

@media (max-width: 575.98px) {
    .centered-card-grid.kpi-grid > .grid-card-item {
        flex: 0 1 calc(50% - 0.75rem);
        max-width: calc(50% - 0.75rem);
    }
}

.centered-card-grid.home-cards > .grid-card-item {
    flex: 0 1 calc(50% - 0.75rem);
    max-width: calc(50% - 0.75rem);
    min-width: min(100%, 300px);
}

.filter-bar .ts-wrapper {
    min-width: 220px;
    text-align: left;
    width: 100%;
}

.filter-bar .ts-control {
    border-radius: 8px;
    border: 1.5px solid #94a3b8;
    min-height: 38px;
    background: #fff;
    box-shadow: none;
    text-align: left;
}

/* Full-page loading state. Visibility is driven by the `hidden` attribute so it
   still disappears if this stylesheet is stale or missing. JS reveals it only
   when data is slow enough to warrant it, so cached loads never flash a spinner.
   Sits below the sidenav's z-index so navigation stays usable. */
.page-loading-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 1030;
    align-items: center;
    justify-content: center;
    background: rgba(245, 247, 250, 0.72);
    backdrop-filter: blur(2px);
}

.page-loading-overlay[hidden] {
    display: none;
}

.page-loading-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    background: var(--wolt-card-bg);
    border: 1.5px solid #cbd5e1;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.12);
}

.page-loading-box .spinner-border {
    color: var(--wolt-blue) !important;
}

.page-loading-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--wolt-muted);
}

/* Multi-selects: selected values are summarised as a count so the control
   stays one line high instead of growing a chip per selection. */
.ts-wrapper.ts-compact .ts-control {
    flex-wrap: nowrap;
    overflow: hidden;
}

.ts-wrapper.ts-compact .ts-control > .item {
    display: none;
}

.ts-wrapper.ts-compact .ts-summary {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--wolt-dark-blue);
    white-space: nowrap;
    align-self: center;
}

.ts-dropdown .option input[type="checkbox"] {
    margin-right: 0.5rem;
    vertical-align: -0.1em;
    /* The option row handles toggling; let clicks fall through to it. */
    pointer-events: none;
    accent-color: var(--wolt-blue);
}

/* Dropdown option lists stay left-aligned even when filter labels are centered */
.ts-dropdown,
.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results {
    text-align: left !important;
}

.ts-dropdown .option {
    padding: 0.45rem 0.75rem;
    border-radius: 0;
    cursor: pointer;
}

.ts-dropdown .option.active,
.ts-dropdown .option:hover,
.ts-dropdown .option.selected:hover {
    background: #ccebf8 !important;
    color: var(--wolt-dark-blue) !important;
}

.ts-dropdown .option.selected {
    background: var(--wolt-light-blue);
    color: var(--wolt-dark-blue);
    font-weight: 600;
}

.dropdown-menu,
.dropdown-menu .dropdown-item,
.dropdown-menu .dropdown-header {
    text-align: left;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item.active,
.dropdown-menu .dropdown-item:active {
    background: #ccebf8;
    color: var(--wolt-dark-blue);
}

.chart-canvas-wrap {
    position: relative;
    height: min(520px, 60vh);
    width: 100%;
}

.metric-card .metric-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--wolt-text);
    line-height: 1.2;
}

.metric-card .metric-label {
    font-size: 0.8rem;
    color: var(--wolt-muted);
    margin-top: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.chart-card {
    background: var(--wolt-card-bg);
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
}

/* Stable-height chart cards to avoid Chart.js resize feedback loops */
.equal-height-chart-card {
    height: 320px;
    display: flex;
    flex-direction: column;
}

.equal-height-chart-card canvas {
    flex: 1 1 auto !important;
    width: 100% !important;
    height: 100% !important;
}

/* Filters */
.filter-bar {
    background: var(--wolt-card-bg);
    border-radius: 12px;
    border: 1.5px solid #cbd5e1;
    padding: 1rem 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 1rem;
    align-items: end;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-bar > div {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.filter-bar .filter-field-search {
    flex: 0 1 320px;
    min-width: 200px;
    max-width: 360px;
}

.filter-bar .filter-field-select {
    flex: 0 1 260px;
    min-width: 220px;
    max-width: 300px;
}

.filter-bar .filter-field-search .form-control,
.filter-bar .filter-field-search input {
    width: 100%;
}

.filter-actions {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* Export / action dropdowns — visible chevron indicator */
.btn-wolt.dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.45em;
    vertical-align: 0.15em;
    border-top-color: currentColor;
    opacity: 0.9;
    transition: transform 0.2s ease;
}

.dropdown.show .btn-wolt.dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Presentation page */
.presentation-pdf-wrap {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    background: #f8fafc;
}

.presentation-pdf-frame {
    width: 100%;
    height: min(78vh, 720px);
    border: 0;
    display: block;
}

.presentation-slide-header {
    margin-bottom: 1rem;
}

.presentation-slide-num {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--wolt-muted);
    margin-bottom: 0.35rem;
}

.presentation-slide-body {
    display: grid;
    gap: 1.25rem;
    align-items: start;
}

.presentation-slide-body.has-chart {
    grid-template-columns: 1fr 1fr;
}

.presentation-slide-text ul {
    padding-left: 1.1rem;
    color: var(--wolt-muted);
    font-size: 0.92rem;
}

.presentation-slide-text li {
    margin-bottom: 0.35rem;
    white-space: normal;
    overflow-wrap: anywhere;
}

.presentation-slide-text {
    min-width: 0; /* allow long text to wrap within the left column */
    align-self: start;
}

.presentation-slide-chart {
    background: #f8fafc;
    border-radius: 10px;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    align-self: start;
}

.presentation-slide-chart img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 991.98px) {
    .presentation-slide-body.has-chart {
        grid-template-columns: 1fr;
    }
}

/* SQL catalog */
.sql-code-block {
    white-space: pre;
    overflow: auto;
    max-height: 420px;
    background: #0b1220;
    color: #d6e3ff;
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.82rem;
    line-height: 1.45;
    margin-bottom: 0;
}

.sql-code-block code {
    display: block;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    white-space: pre;
}

.sql-code-block code.hljs {
    background: transparent;
    padding: 0;
    color: inherit;
}

.sql-code-block .hljs-keyword,
.sql-code-block .hljs-selector-tag {
    color: #c792ea;
    font-weight: 600;
}

.sql-code-block .hljs-built_in,
.sql-code-block .hljs-title.function_,
.sql-code-block .hljs-title.class_ {
    color: #82aaff;
}

.sql-code-block .hljs-string,
.sql-code-block .hljs-regexp {
    color: #c3e88d;
}

.sql-code-block .hljs-number,
.sql-code-block .hljs-literal {
    color: #f78c6c;
}

.sql-code-block .hljs-comment,
.sql-code-block .hljs-doctag {
    color: #546e7a;
    font-style: italic;
}

.sql-code-block .hljs-operator,
.sql-code-block .hljs-punctuation {
    color: #89ddff;
}

.sql-code-block .hljs-variable,
.sql-code-block .hljs-attr,
.sql-code-block .hljs-attribute {
    color: #ffcb6b;
}

.sql-code-block .hljs-meta,
.sql-code-block .hljs-name {
    color: #f07178;
}

.filter-bar label {
    display: block;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--wolt-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0;
    text-align: center;
    line-height: 1.2;
}

.filter-bar label + br {
    display: none;
}

.filter-bar select,
.filter-bar input,
.filter-bar .form-control {
    border-radius: 8px;
    border: 1.5px solid #94a3b8;
    padding: 0.4rem 0.75rem;
    font-size: 0.88rem;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.filter-bar select:focus,
.filter-bar input:focus,
.filter-bar .form-control:focus,
.filter-bar .ts-wrapper.focus .ts-control {
    border-color: var(--wolt-blue);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 157, 224, 0.15);
}

/* Data table */
.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.data-table th {
    background: var(--wolt-light-blue);
    padding: 0.6rem 0.75rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--wolt-muted);
    border-bottom: 2px solid #e5e7eb;
    position: sticky;
    top: 0;
}

.data-table td {
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid #f0f0f0;
}

.data-table tbody tr:nth-child(odd) {
    background: #f8fafc;
}

.data-table tbody tr:nth-child(even) {
    background: #fff;
}

.data-table tbody tr:hover { background: var(--wolt-light-blue); }

/* dbt project — model reasoning lists */
.dbt-reason-list .dbt-reason-item {
    margin-bottom: 0.85rem;
}

.dbt-reason-list .dbt-reason-item:last-child {
    margin-bottom: 0;
}

.dbt-reason-list .dbt-why-row {
    margin-top: 0.35rem;
    margin-left: 1.25rem;
    padding-left: 0.75rem;
    border-left: 3px solid rgba(0, 157, 224, 0.35);
    font-size: 0.92rem;
    color: #475569;
}

.dbt-reason-list .dbt-why-label {
    font-weight: 800;
    color: var(--wolt-blue);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-right: 0.2rem;
}

/* AI Chat */
.chat-container {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 56px - 3rem);
}

.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.chat-bubble {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
    line-height: 1.5;
}

.chat-bubble.user {
    background: var(--wolt-blue);
    color: #fff;
    margin-left: auto;
    border-bottom-right-radius: 4px;
}

.chat-bubble.assistant {
    background: var(--wolt-card-bg);
    border: 1px solid #e5e7eb;
    border-bottom-left-radius: 4px;
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid #e5e7eb;
    background: var(--wolt-card-bg);
    display: flex;
    gap: 0.75rem;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    padding: 0.6rem 1rem;
    font-size: 0.92rem;
}

.chat-input-area button {
    background: var(--wolt-blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.25rem;
    font-weight: 600;
    cursor: pointer;
}

.chat-input-area button:hover { background: var(--wolt-dark-blue); }

/* Btn */
.btn-wolt {
    background: var(--wolt-blue);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
}

.btn-wolt:hover { background: var(--wolt-dark-blue); color: #fff; }

/* Badge */
.badge-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
    background: var(--wolt-light-blue);
    color: var(--wolt-blue);
}

/* Insights */
.insights-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(0, 157, 224, 0.12);
    color: var(--wolt-dark-blue);
    font-weight: 700;
    font-size: 0.88rem;
}

.submission-mode-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    border: 1px solid transparent;
}

.submission-mode-chip.primary {
    background: rgba(0, 157, 224, 0.12);
    color: var(--wolt-dark-blue);
    border-color: rgba(0, 157, 224, 0.35);
}

.submission-mode-chip.secondary {
    background: rgba(100, 116, 139, 0.10);
    color: var(--wolt-blue);
    border-color: rgba(100, 116, 139, 0.25);
}

.insights-panel {
    margin-top: 0.75rem;
    padding: 1rem 1.25rem !important;
}

.insights-panel ul {
    margin-bottom: 0;
    padding-left: 1.1rem;
}

.insights-section-heading {
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: var(--wolt-dark-blue);
    text-transform: uppercase;
}

.insight-em {
    font-weight: 900;
    color: var(--wolt-blue);
}

/* Responsive */
.sidenav-toggle { display: none; }

@media (max-width: 991.98px) {
    .sidenav { transform: translateX(-100%); }
    .sidenav.show { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .sidenav-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 1.4rem;
        cursor: pointer;
        color: var(--wolt-text);
    }
    .sidenav-backdrop {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.4);
        z-index: 1035;
        display: none;
    }
    .sidenav-backdrop.show { display: block; }
}

/* Footer */
.wolt-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid #e5e7eb;
    margin-top: 2rem;
    background: rgba(255, 255, 255, 0.6);
}

.wolt-footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.wolt-footer-line {
    color: var(--wolt-muted);
    font-size: 0.86rem;
    margin: 0.35rem 0;
}

.wolt-footer a {
    color: var(--wolt-blue);
    text-decoration: underline;
}
