/* =========================================================
   THEME TOKENS
========================================================= */
:root {
    --brand: #3b82f6;
    --brand-2: #2563eb;
    --ink: #0f172a;
    --muted: rgba(15,23,42,.68);
    --border: rgba(15,23,42,.10);
    --border-soft: rgba(15,23,42,.08);
    --shadow: 0 .75rem 2rem rgba(0,0,0,.06);
    --sidenav-width: 320px;
    --content-offset: 100px; /* minna en sidenav-width viljandi */

    --card-radius: 16px;
    --card-pad: 16px;
}

/* =========================================================
   BASE / DEFAULTS
========================================================= */
html, body {
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
    color: var(--ink);
}

a, .btn-link {
    color: #2563eb;
}

    a:hover, .btn-link:hover {
        color: #1d4ed8;
    }

.btn-primary {
    color: #fff;
    background-color: #2563eb;
    border-color: #1d4ed8;
}

    .btn-primary:hover {
        background-color: #1d4ed8;
        border-color: #1e40af;
    }

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 .1rem #fff, 0 0 0 .25rem rgba(59,130,246,.35);
}

.content {
    padding-top: 1.1rem;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}

/* =========================================================
   PAGE SHELL BACKGROUND
========================================================= */
.page-shell {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    background: radial-gradient(1200px 600px at 15% -10%, rgba(59,130,246,.18), transparent 55%), radial-gradient(900px 500px at 85% 10%, rgba(99,102,241,.14), transparent 50%), linear-gradient(180deg, #f8fafc 0%, #ffffff 55%, #f8fafc 100%);
}

    .page-shell::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(2,6,23,.06) 1px, transparent 1px);
        background-size: 24px 24px;
        opacity: .35;
        pointer-events: none;
    }

    .page-shell::after {
        content: "";
        position: absolute;
        inset: -200px -200px auto auto;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle at 30% 30%, rgba(14,165,233,.22), transparent 55%);
        filter: blur(18px);
        opacity: .7;
        pointer-events: none;
    }

.section-pad {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* =========================================================
   LAYOUT: SIDENAV + MAIN OFFSET
========================================================= */
.page {
    display: flex;
    min-height: 100vh;
}

    .page > .sidebar {
        flex: 0 0 var(--sidenav-width);
        width: var(--sidenav-width);
    }

    .page > main, .main {
        margin-left: var(--content-offset);
    }

/* Mobile */
@media (max-width: 991.98px) {
    .page > main, .main {
        margin-left: 0;
    }
}

/* =========================================================
   SIDEBAR (SOFT)
========================================================= */
/* neutralize old sidebar theme */
.nav-scrollable {
    background: transparent !important;
}

    .nav-scrollable .nav-link {
        color: inherit !important;
        opacity: 1 !important;
    }

        .nav-scrollable .nav-link:hover,
        .nav-scrollable .nav-link.active {
            background: transparent !important;
        }

    .nav-scrollable button.nav-link {
        color: inherit !important;
    }

    .nav-scrollable form button.nav-link {
        background: transparent !important;
        border: 0 !important;
        width: 100%;
        text-align: left;
    }

.app-sidenav {
    width: var(--sidenav-width);
    height: 100vh;
    position: sticky;
    top: 0;
    background: radial-gradient(900px 520px at -10% 10%, rgba(59,130,246,.06), transparent 55%), linear-gradient(180deg, rgba(248,250,252,.96) 0%, rgba(255,255,255,.94) 55%, rgba(248,250,252,.96) 100%);
    border-right: 1px solid rgba(15,23,42,.10);
}

    .app-sidenav::before {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .18;
        background-image: radial-gradient(rgba(2,6,23,.07) 1px, transparent 1px);
        background-size: 26px 26px;
    }

    .app-sidenav > * {
        position: relative;
        z-index: 1;
    }

.sidenav-header {
    padding: 14px 14px 10px 14px;
}

.sidenav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--ink);
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-weight: 800;
    background: rgba(59,130,246,.10);
    border: 1px solid rgba(59,130,246,.18);
    color: #1d4ed8;
}

.brand-text {
    font-weight: 800;
    letter-spacing: .2px;
}

.app-sidenav .nav-scrollable {
    height: calc(100vh - 58px);
    overflow: auto;
    padding: 6px 10px 14px 10px;
}

.nav-groups {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-group-title {
    padding: 8px 10px 2px 10px;
    font-size: .75rem;
    color: rgba(15,23,42,.55);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.nav-link.nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 10px;
    color: rgba(15,23,42,.82) !important;
    text-decoration: none;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .nav-link.nav-item:hover {
        background: rgba(15,23,42,.035) !important;
        color: rgba(15,23,42,.92) !important;
    }

    .nav-link.nav-item.active {
        background: rgba(59,130,246,.08) !important;
        color: var(--ink) !important;
        font-weight: 700;
        position: relative;
    }

        .nav-link.nav-item.active::before {
            content: "";
            position: absolute;
            left: 6px;
            top: 10px;
            bottom: 10px;
            width: 3px;
            border-radius: 999px;
            background: rgba(59,130,246,.65);
        }

.nav-ic {
    width: 20px;
    min-width: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: .88;
}

.nav-txt {
    overflow: hidden;
    text-overflow: ellipsis;
}

.nav-toggle {
    width: 100%;
    border: 0;
    background: transparent;
    text-align: left;
}

    .nav-toggle:focus {
        outline: none;
        box-shadow: none;
    }

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.nav-chev {
    opacity: .55;
    margin-left: auto;
}

.nav-sub {
    margin-left: 10px;
    padding-left: 10px;
    border-left: 1px dashed rgba(15,23,42,.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.nav-subitem {
    padding: 9px 10px;
    border-radius: 10px;
}

.nav-footer {
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(15,23,42,.10);
}

.nav-btn {
    width: 100%;
    border: 0 !important;
    background: transparent !important;
    text-align: left;
}

/* =========================================================
   DASHBOARD (Projects / Time)
========================================================= */
.dash-head {
    padding: 2px 2px 0 2px;
}

.dash-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: .2px;
}

.dash-subtitle {
    font-size: .95rem;
}

.dash-card {
    border: 1px solid var(--border-soft);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
}

    .dash-card .card-body {
        padding: var(--card-pad);
    }

    .dash-card .card-header {
        border-bottom: 1px solid var(--border-soft);
        background: rgba(248,250,252,.65);
    }

.dash-card-title {
    font-weight: 800;
    letter-spacing: .15px;
}

.dash-card-sub {
    font-size: .9rem;
}

.dash-badge {
    background: rgba(59,130,246,.12);
    border: 1px solid rgba(59,130,246,.22);
    color: #1d4ed8;
    font-weight: 700;
}

.dash-badge-soft {
    background: rgba(15,23,42,.04);
    border: 1px solid rgba(15,23,42,.08);
    color: rgba(15,23,42,.75);
    font-weight: 700;
}

.dash-badge-warn {
    background: rgba(245,158,11,.14);
    border: 1px solid rgba(245,158,11,.22);
    color: #92400e;
    font-weight: 700;
}

/* Segmented control */
.dash-seg {
    display: inline-flex;
    background: rgba(15,23,42,.04);
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 999px;
    padding: 3px;
    gap: 3px;
}

.dash-seg-btn {
    border: 0;
    background: transparent;
    padding: .55rem .85rem;
    border-radius: 999px;
    font-weight: 800;
    color: rgba(15,23,42,.78);
}

    .dash-seg-btn.active {
        background: #fff;
        border: 1px solid rgba(15,23,42,.10);
        box-shadow: 0 .35rem 1.2rem rgba(0,0,0,.06);
        color: var(--ink);
    }

/* KPI */
.kpi {
    border: 1px solid rgba(15,23,42,.08);
    background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
    border-radius: 14px;
    padding: 12px 12px;
    height: 100%;
}

.kpi-compact {
    padding: 10px 10px;
}

.kpi-label {
    font-size: .82rem;
    color: rgba(15,23,42,.62);
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.kpi-value {
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: .2px;
    line-height: 1.1;
}

.kpi-unit {
    font-size: .9rem;
    font-weight: 800;
    color: rgba(15,23,42,.55);
    margin-left: 4px;
}

.kpi-mini {
    font-size: .86rem;
    color: #6c757d;
    margin-top: 6px;
}

/* Search */
.dash-search {
    width: min(360px, 100%);
}

    .dash-search .input-group-text {
        background: rgba(15,23,42,.04);
        border-color: rgba(15,23,42,.10);
    }

    .dash-search .form-control {
        border-color: rgba(15,23,42,.10);
    }

/* Progress */
.dash-progress {
    height: 10px;
    border-radius: 999px;
    background: rgba(15,23,42,.06);
    overflow: hidden;
}

    .dash-progress .progress-bar {
        background: linear-gradient(90deg, rgba(37,99,235,.85), rgba(59,130,246,.85));
        border-radius: 999px;
    }

/* Tables */
.dash-table-wrap {
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    overflow: hidden;
}

.dash-table {
    margin: 0;
}

    .dash-table thead th {
        position: sticky;
        top: 0;
        z-index: 2;
        background: rgba(248,250,252,.92);
        border-bottom: 1px solid rgba(15,23,42,.10);
    }

.dash-th {
    font-size: .82rem;
    color: rgba(15,23,42,.70);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 900;
}

.dash-td {
    vertical-align: middle;
}

.dash-pill {
    display: inline-flex;
    align-items: center;
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.75);
    font-weight: 800;
    font-size: .85rem;
}

.dash-row.is-selected {
    outline: 2px solid rgba(59,130,246,.18);
    background: rgba(59,130,246,.06);
}

/* Expand row */
.dash-expand td {
    padding: 0 !important;
    border-top: 0;
}

.dash-expand-inner {
    padding: 14px;
    background: radial-gradient(900px 300px at 10% 0%, rgba(59,130,246,.10), transparent 60%), linear-gradient(180deg, rgba(248,250,252,.80), rgba(255,255,255,.90));
    border-top: 1px solid rgba(15,23,42,.08);
}

.mini-card {
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    padding: 12px;
    height: 100%;
}

.mini-card-title {
    font-weight: 900;
    letter-spacing: .2px;
    margin-bottom: 8px;
}

.mini-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 4px 0;
}

.dash-hr {
    border: 0;
    border-top: 1px solid rgba(15,23,42,.10);
    margin: 14px 0;
}

.dash-subtable thead th {
    background: rgba(248,250,252,.92);
}

.dash-subtable tfoot th,
.dash-subtable tfoot td {
    background: rgba(248,250,252,.65);
    font-weight: 900;
}

.dash-foot {
    background: rgba(248,250,252,.80);
}

    .dash-foot th, .dash-foot td {
        border-top: 1px solid rgba(15,23,42,.12) !important;
        font-weight: 900;
    }

/* =========================================================
   HERO (kept from your file - unchanged)
========================================================= */
.hero-wrap {
    position: relative;
    background: radial-gradient(1100px 500px at 20% -10%, rgba(59,130,246,.20), transparent 55%), linear-gradient(180deg, rgba(15,23,42,.78), rgba(15,23,42,.65));
    border-bottom: 1px solid rgba(0,0,0,.06);
}

.hero-bg {
    position: relative;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 1.25rem 3rem rgba(0,0,0,.18);
    border: 1px solid rgba(255,255,255,.12);
    background: #0b1220;
}

    .hero-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: .92;
        display: block;
        transform: scale(1.02);
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2,6,23,.90) 0%, rgba(2,6,23,.70) 45%, rgba(2,6,23,.12) 80%, rgba(2,6,23,0) 100%);
}

.hero-content {
    position: absolute;
    inset: 0;
    padding: 2.25rem;
    display: flex;
    align-items: center;
}

.hero-card {
    max-width: 680px;
    color: #fff;
}

    .hero-card .lead {
        color: rgba(255,255,255,.82);
    }

.hero-accent {
    color: #93c5fd;
}

@media (max-width: 991.98px) {
    .hero-content {
        padding: 1.5rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(2,6,23,.86) 0%, rgba(2,6,23,.62) 55%, rgba(2,6,23,.18) 100%);
    }

    .hero-card {
        max-width: 100%;
    }
}

@media (max-width: 575.98px) {
    .hero-content {
        padding: 1.25rem;
    }
}

.dash-chart-box {
    position: relative;
    width: 100%;
}

.dash-chart-box-lg {
    height: 360px;
}
/* þú getur hækkað/lækkað */
.dash-chart-box-sm {
    height: 360px;
}

.dash-chart-box canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* =========================================================
   FINANCIAL FORECAST (Cashflow) — page specific
========================================================= */

/* Page header spacing */
.fin-forecast .page-title {
    font-weight: 900;
    letter-spacing: .2px;
}

/* Cards */
.fin-forecast .card {
    border: 1px solid var(--border-soft);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow);
}

    .fin-forecast .card .card-header {
        background: rgba(248,250,252,.65);
        border-bottom: 1px solid var(--border-soft);
    }

/* Dashboard */
.fin-forecast .dash-hero {
    border-radius: var(--card-radius);
}

.fin-forecast .dash-kpi {
    border-radius: var(--card-radius);
}

.fin-forecast .dash-muted {
    color: rgba(15,23,42,.62);
    font-size: .92rem;
}

.fin-forecast .dash-big {
    font-size: 2.05rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: .2px;
}

.fin-forecast .dash-divider {
    border-top: 1px solid rgba(15,23,42,.10);
    margin: 1rem 0;
}

/* IMPORTANT: your css already defines .dash-pill globally.
   Here we keep it compatible but slightly nicer in forecast context. */
.fin-forecast .dash-pill {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .30rem .65rem;
    border-radius: 999px;
    border: 1px solid rgba(15,23,42,.10);
    background: rgba(255,255,255,.78);
    font-weight: 900;
    font-size: .85rem;
}

/* Dashboard chart box */
.fin-forecast .dash-chart-box {
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
    background: rgba(255,255,255,.86);
    padding: 12px;
}

/* Tabs — make them feel more modern */
.fin-forecast .nav-tabs {
    border-bottom: 1px solid rgba(15,23,42,.10);
}

    .fin-forecast .nav-tabs .nav-link {
        border: 0;
        border-bottom: 2px solid transparent;
        font-weight: 800;
        color: rgba(15,23,42,.70);
    }

        .fin-forecast .nav-tabs .nav-link:hover {
            color: rgba(15,23,42,.88);
            background: rgba(15,23,42,.03);
        }

        .fin-forecast .nav-tabs .nav-link.active {
            color: var(--ink);
            background: transparent;
            border-bottom: 2px solid rgba(59,130,246,.75);
        }

/* Cashflow table wrapper (sticky header/footer) */
.fin-forecast .cashflow-table-wrapper {
    max-height: 600px;
    overflow-y: auto;
    border: 1px solid rgba(15,23,42,.08);
    border-radius: 14px;
}

.fin-forecast .cashflow-table thead th {
    position: sticky;
    top: 0;
    background: rgba(248,250,252,.92);
    z-index: 2;
    border-bottom: 1px solid rgba(15,23,42,.10);
}

.fin-forecast .cashflow-table tfoot th,
.fin-forecast .cashflow-table tfoot td {
    position: sticky;
    bottom: 0;
    background: rgba(248,250,252,.92);
    z-index: 2;
    border-top: 1px solid rgba(15,23,42,.10);
}

/* Small helper: keep canvas crisp & responsive */
.fin-forecast canvas {
    width: 100% !important;
    display: block;
}

/* =========================================================
   OFFER RESPOND (Public link page) — page specific
   NOTE: This replaces the <style> block in OfferRespond.razor
========================================================= */


.offer-respond-page {
    width: 100%;
    min-height: calc(100vh - 40px);
    display: grid;
    place-items: center;
    padding: 28px 16px;
    background: radial-gradient(900px 420px at 20% 0%, rgba(59,130,246,.12), transparent 55%), radial-gradient(900px 420px at 85% 10%, rgba(99,102,241,.10), transparent 55%), linear-gradient(180deg, #f7f7fb, #ffffff);
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: #111827;
}

    .offer-respond-page .offer-card {
        width: min(860px, 100%);
        background: rgba(255,255,255,.92);
        border: 1px solid rgba(15,23,42,.10);
        border-radius: 18px;
        box-shadow: 0 18px 55px rgba(17,24,39,.10);
        overflow: hidden;
        backdrop-filter: blur(6px);
    }

    .offer-respond-page .offer-card-header {
        padding: 22px 22px 14px;
        border-bottom: 1px solid rgba(15,23,42,.10);
        background: radial-gradient(900px 150px at 0% 0%, rgba(59,130,246,.14), transparent 60%);
    }

    .offer-respond-page .title {
        font-size: 22px;
        font-weight: 900;
        letter-spacing: -0.02em;
        margin-bottom: 6px;
    }

    .offer-respond-page .subtitle {
        color: rgba(15,23,42,.65);
        font-size: 14px;
        line-height: 1.35;
    }

    .offer-respond-page .offer-card-body {
        padding: 20px 22px 22px;
    }

    .offer-respond-page .pill-row {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-bottom: 14px;
    }

    .offer-respond-page .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 11px;
        border-radius: 999px;
        border: 1px solid rgba(15,23,42,.10);
        background: rgba(248,250,252,.9);
        font-size: 13px;
        font-weight: 700;
    }

        .offer-respond-page .pill b {
            font-weight: 900;
        }

    .offer-respond-page .pill-muted {
        background: rgba(255,255,255,.85);
        color: rgba(15,23,42,.78);
    }

    .offer-respond-page .section {
        margin-top: 10px;
    }

    .offer-respond-page .label {
        display: block;
        font-weight: 900;
        font-size: 13px;
        margin-bottom: 8px;
        letter-spacing: .02em;
    }

    .offer-respond-page .textarea {
        width: 100%;
        min-height: 120px;
        resize: vertical;
        border: 1px solid rgba(15,23,42,.16);
        border-radius: 14px;
        padding: 12px 12px;
        font-size: 14px;
        outline: none;
        background: rgba(255,255,255,.95);
        transition: box-shadow 140ms ease, border-color 140ms ease, transform 140ms ease;
    }

        .offer-respond-page .textarea:focus {
            border-color: rgba(59,130,246,.60);
            box-shadow: 0 0 0 5px rgba(59,130,246,.14);
        }

    .offer-respond-page .hint {
        margin-top: 8px;
        color: rgba(15,23,42,.60);
        font-size: 12.5px;
    }

    .offer-respond-page .actions {
        display: flex;
        gap: 12px;
        margin-top: 16px;
        flex-wrap: wrap;
    }

    .offer-respond-page .offer-btn {
        border: 0;
        border-radius: 14px;
        padding: 12px 14px;
        font-weight: 900;
        font-size: 14px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: transform 70ms ease, filter 120ms ease, opacity 120ms ease, box-shadow 140ms ease;
        box-shadow: 0 12px 26px rgba(17,24,39,.12);
        color: #fff;
        user-select: none;
    }

        .offer-respond-page .offer-btn:active {
            transform: translateY(1px);
        }

        .offer-respond-page .offer-btn:disabled {
            opacity: 0.65;
            cursor: not-allowed;
            box-shadow: none;
        }

    .offer-respond-page .btn-accept {
        background: linear-gradient(180deg, #22c55e, #16a34a);
    }

    .offer-respond-page .btn-reject {
        background: linear-gradient(180deg, #ef4444, #dc2626);
    }

    .offer-respond-page .offer-btn:hover:not(:disabled) {
        filter: brightness(1.03);
    }

    .offer-respond-page .status {
        margin-top: 16px;
        padding: 14px 14px;
        border-radius: 14px;
        border: 1px solid rgba(15,23,42,.10);
        background: rgba(248,250,252,.90);
        display: flex;
        gap: 12px;
        align-items: flex-start;
    }

    .offer-respond-page .status-title {
        font-weight: 950;
        margin-bottom: 6px;
    }

    .offer-respond-page .status-text {
        color: rgba(15,23,42,.78);
        line-height: 1.45;
        white-space: pre-wrap;
    }

    .offer-respond-page .status-info {
        border-color: rgba(59,130,246,.25);
        background: rgba(239,246,255,.95);
    }

    .offer-respond-page .status-success {
        border-color: rgba(34,197,94,.25);
        background: rgba(240,253,244,.95);
    }

    .offer-respond-page .status-error {
        border-color: rgba(239,68,68,.25);
        background: rgba(254,242,242,.95);
    }

    .offer-respond-page .details {
        margin-top: 10px;
        color: rgba(15,23,42,.80);
    }

        .offer-respond-page .details summary {
            cursor: pointer;
            font-weight: 900;
            color: rgba(15,23,42,.92);
            margin-bottom: 6px;
        }

        .offer-respond-page .details pre {
            background: #0b1220;
            color: #e5e7eb;
            padding: 12px;
            border-radius: 12px;
            overflow: auto;
            max-width: 100%;
            font-size: 12px;
            line-height: 1.4;
        }

    .offer-respond-page .spinner {
        width: 18px;
        height: 18px;
        border-radius: 999px;
        border: 3px solid rgba(59,130,246,0.25);
        border-top-color: rgba(59,130,246,0.95);
        animation: offer-respond-spin 900ms linear infinite;
        margin-top: 2px;
    }

    .offer-respond-page .btn-spinner {
        width: 14px;
        height: 14px;
        border-radius: 999px;
        border: 3px solid rgba(255,255,255,0.35);
        border-top-color: rgba(255,255,255,0.95);
        animation: offer-respond-spin 900ms linear infinite;
    }

@keyframes offer-respond-spin {
    to {
        transform: rotate(360deg);
    }
}

.sidenav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo {
    height: 120px; /* prófaðu 44–56px */
    width: auto;
}
