:root {
    /* brand palette */
    --brand-green: #16a34a;
    --brand-green-hover: #15803d;
    --brand-green-50: #f0fdf4;
    --brand-green-100: #dcfce7;
    --brand-green-200: #bbf7d0;
    --brand-green-700: #15803d;
    --brand-green-900: #1B5E20;

    --brand-ocean: #1e5a7e;
    --brand-ocean-700: #164c6b;
    --brand-ocean-900: #0a2a3d;

    /* neutrals */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* status */
    --red-50: #fef2f2;
    --red-200: #fecaca;
    --red-400: #f87171;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --red-700: #b91c1c;
    --green-50: #f0fdf4;
    --green-200: #bbf7d0;
    --green-500: #22c55e;
    --green-700: #15803d;
    --blue-50: #eff6ff;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --amber-50: #fffbeb;
    --amber-200: #fde68a;
    --amber-500: #f59e0b;
    --amber-700: #b45309;
    --yellow-50: #fefce8;
    --yellow-200: #fef08a;
    --yellow-700: #a16207;

    /* surface */
    --surface: #ffffff;
    --surface-muted: var(--gray-50);
    --border: var(--gray-200);
    --border-strong: var(--gray-300);

    /* typography */
    --font-sans: 'DM Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    /* radii & shadows */
    --radius-sm: 6px;
    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, .06);
    --shadow-lg: 0 10px 25px rgba(15, 23, 42, .12);

    /* layout */
    --nav-height: 64px;
    --container-max: 1200px;

    /* z layers */
    --z-nav: 900;
    --z-overlay: 1000;
    --z-modal: 1100;
    --z-toast: 1200;
}

/*  reset & base */
*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body {
    margin: 0;
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-800);
    background: var(--gray-50);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.25;
}

p { margin: 0; }

a { color: inherit; text-decoration: none; }
a:hover { color: var(--brand-green-700); }

button {
    font: inherit;
    cursor: pointer;
    border: none;
    background: none;
    padding: 0;
}

code {
    font-family: ui-monospace, Menlo, Monaco, Consolas, monospace;
    font-size: .85em;
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: var(--radius-sm);
}

/*    layout primitives*/
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 1rem;
}

.main {
    padding-top: var(--nav-height);
}


.body--app-shell {
    overflow: hidden;
    height: 100vh;
    height: 100dvh;
    overscroll-behavior: none;
    position: fixed;
    width: 100%;
}

/* Main pages (contact, auth pages etc.) still want 100vh minimum
   so their content fills the viewport. The dashboard explicitly
   sizes itself to the viewport minus the navbar, so this would
   push its bottom edge past the viewport and create a vertical
   scrollbar. */
.main--tall {
    min-height: 100vh;
}

.main--flush { padding-top: var(--nav-height); }

/*  navbar*/
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--nav-height);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
    z-index: var(--z-nav);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    width: 100%;
    padding: 0 1.5rem;
}

@media (max-width: 640px) {
    .navbar__inner { padding: 0 1rem; }
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.navbar__logo img { 
    height: 36px; 
    background-color: var(--brand-green-900);
    border-radius: var(--radius-sm);
}

.navbar__links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-link {
    font-size: .875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: color .15s ease;
    padding: .25rem .5rem;
}

.nav-link:hover { color: var(--brand-green-700); }

.navbar__user {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-left: 1rem;
    border-left: 1px solid var(--gray-200);
}

.navbar__username {
    font-size: .875rem;
    color: var(--gray-500);
}

.navbar__logout {
    font-size: .875rem;
    font-weight: 500;
    color: var(--red-500);
    transition: color .15s ease;
}

.navbar__logout:hover { color: var(--red-600); }

/* mobile nav - hide the username text, keep the rest compact */
@media (max-width: 640px) {
    .navbar__links { gap: .5rem; }
    .navbar__username { display: none; }
    .navbar__user {
        padding-left: .5rem;
        gap: .5rem;
    }
    .nav-link { padding: .25rem .25rem; }
    .navbar__logo img { height: 30px; }
}

/*  buttons*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .6rem 1.1rem;
    font-size: .9rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: background .15s ease, color .15s ease, border-color .15s ease, box-shadow .15s ease;
    cursor: pointer;
    line-height: 1.25;
    white-space: nowrap;
}

.btn:disabled { opacity: .5; cursor: not-allowed; }

.btn--primary {
    background: var(--brand-green);
    color: white;
    border-color: var(--brand-green);
    box-shadow: 0 1px 2px rgba(22, 163, 74, .25);
}
.btn--primary:hover {
    background: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    color: white;
}

.btn--ghost {
    background: white;
    color: var(--brand-ocean-700);
    border-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.btn--ghost:hover {
    background: var(--brand-green-50);
    border-color: var(--brand-green-200);
    color: var(--brand-green-700);
}

.btn--danger {
    background: var(--red-500);
    color: white;
    border-color: var(--red-500);
}
.btn--danger:hover {
    background: var(--red-600);
    border-color: var(--red-600);
    color: white;
}

.btn--block {
    display: flex;
    width: 100%;
}

.btn__icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
}

/* legacy aliases used by auth templates */
.auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .65rem 1.4rem;
    font-size: .9rem;
    font-weight: 600;
    color: white;
    background: var(--brand-green);
    border-radius: var(--radius);
    border: 1px solid var(--brand-green);
    transition: background .15s ease, box-shadow .15s ease;
    box-shadow: 0 1px 2px rgba(22, 163, 74, .25);
}
.auth-btn:hover {
    background: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    color: white;
}
.auth-btn--block { display: flex; width: 100%; }

.auth-link {
    font-size: .8rem;
    color: var(--brand-ocean-700);
    font-weight: 500;
}
.auth-link:hover { color: var(--brand-green-700); text-decoration: underline; }
.auth-link--block { display: block; }

/*  forms*/
.form { display: flex; flex-direction: column; gap: 1rem; }

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
@media (min-width: 640px) {
    .form-row--2col { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-label {
    display: block;
    font-size: .8125rem;
    font-weight: 700;
    color: var(--gray-800);
    letter-spacing: .01em;
}
.form-label--muted {
    font-size: .75rem;
    font-weight: 500;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: .08em;
}
.form-label__required { color: var(--red-500); margin-left: 2px; }

.form-input,
.auth-input {
    width: 100%;
    padding: .65rem .85rem;
    font: inherit;
    font-size: .9rem;
    color: var(--gray-800);
    background: white;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.form-input::placeholder,
.auth-input::placeholder { color: var(--gray-400); }
.form-input:focus,
.auth-input:focus {
    outline: none;
    border-color: var(--brand-green);
    box-shadow: 0 0 0 3px rgba(22, 163, 74, .15);
}

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

.form-file {
    display: block;
    width: 100%;
    font-size: .875rem;
    color: var(--gray-600);
}
.form-file::file-selector-button {
    margin-right: .75rem;
    padding: .5rem 1rem;
    font: inherit;
    font-size: .875rem;
    font-weight: 600;
    color: var(--brand-green-700);
    background: var(--brand-green-50);
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background .15s ease;
}
.form-file::file-selector-button:hover { background: var(--brand-green-100); }

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding-top: .5rem;
    flex-wrap: wrap;
}
.form-actions--end { justify-content: flex-end; }

/*  cards & modals*/
.card {
    background: white;
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}

@media (min-width: 640px) {
    .card { padding: 2rem; }
}

.modal {
    position: fixed;
    inset: 0;
    z-index: var(--z-modal);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.modal.is-open { display: flex; }

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.modal__panel {
    position: relative;
    width: 100%;
    max-width: 32rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 1.5rem;
    max-height: calc(100vh - 2rem);
    overflow-y: auto;
}

@media (max-width: 480px) {
    .modal { padding: 0; align-items: flex-end; }
    .modal__panel {
        max-width: 100%;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        max-height: 92vh;
    }
}

.modal__title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: .25rem;
}

.modal__subtitle {
    font-size: .875rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
}

/*    8. Alerts & toasts*/
.alert {
    padding: .75rem .9rem;
    border-radius: var(--radius);
    font-size: .875rem;
    border: 1px solid;
    display: block;
}
.alert--error {
    background: var(--red-50);
    border-color: var(--red-200);
    color: var(--red-600);
}
.alert--warning {
    background: var(--amber-50);
    border-color: var(--amber-200);
    color: var(--amber-700);
}
.alert--success {
    background: var(--green-50);
    border-color: var(--green-200);
    color: var(--green-700);
}
.alert--info {
    background: var(--blue-50);
    border-color: var(--blue-200);
    color: var(--blue-700);
}
.alert--center { text-align: center; }
.alert ul {
    margin: .25rem 0 0;
    padding-left: 1.1rem;
}
.alert__title { font-weight: 600; margin-bottom: .25rem; display: block; }

/* floating toast messages */
.toasts {
    position: fixed;
    top: calc(var(--nav-height) + 1rem);
    right: 1rem;
    left: auto;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    transition: opacity .3s ease;
    max-width: calc(100vw - 2rem);
}
.toast {
    padding: .75rem 1.1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    font-size: .875rem;
    font-weight: 500;
    color: white;
}
.toast--success { background: var(--brand-green); }
.toast--error   { background: var(--red-500); }
.toast--warning { background: var(--amber-500); }
.toast--info    { background: var(--gray-700); }

@media (max-width: 640px) {
    .toasts { right: .5rem; left: .5rem; max-width: none; }
}

/*  auth pages (centered card over background)*/
.auth-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
.auth-bg-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 42, 61, .65), rgba(22, 101, 52, .55));
    z-index: 1;
}

.auth-wrapper {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--nav-height) + 1.5rem) 1rem 2rem;
}

.auth-card {
    width: 100%;
    max-width: 28rem;
    background: white;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    padding: 2rem 1.5rem;
}
@media (min-width: 640px) {
    .auth-card { padding: 2.5rem 2.25rem; }
}

.auth-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}
.auth-logo img {
    background-color: var(--brand-green-900);
    border-radius: var(--radius);
    height: 56px; 
}

.auth-heading {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: .5rem;
}
.auth-subheading {
    font-size: .875rem;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 1.5rem;
}

.auth-icon-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.auth-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
}
.auth-icon svg { width: 32px; height: 32px; }
.auth-icon--success { background: var(--green-50); border-color: var(--green-200); color: var(--green-500); }
.auth-icon--error   { background: var(--red-50);   border-color: var(--red-200);   color: var(--red-400); }
.auth-icon--info    { background: var(--blue-50);  border-color: var(--blue-200);  color: var(--blue-500); }

/*    Dashboard (sidebar + map)
      Desktop (≥769px): the sidebar is docked on the left at fixed
   width; the map fills the rest.
   Mobile (<768px):  the map takes the full viewport. The sidebar
   is a drawer that slides in from the left when the user taps
   the hamburger button; a scrim dims the map behind it.*/
:root {
    --sidebar-width: 360px;
}

.dashboard {
    position: relative;
    height: calc(100vh - var(--nav-height));
    height: calc(100dvh - var(--nav-height));
    overflow: hidden;
    overscroll-behavior: none;
    background: var(--gray-50);
}

.dashboard__map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: var(--sidebar-width);
    z-index: 0;
}

/* The map div is also .dashboard__map which uses left+right to fill
   its parent. Giving it an explicit width:100% here breaks that and
   pushes the right edge off-screen. Only set a fallback min-height. */
#map {
    min-height: 300px;
}

/* --- hamburger button (mobile only) ----------------------- */
.dashboard__menu-btn {
    display: none;
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 500;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--gray-700);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}
.dashboard__menu-btn:hover { color: var(--brand-green-700); }

/* --- Scrim behind the drawer (mobile only) ---------------- */
.dashboard__scrim {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .5);
    z-index: 450;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
}
.dashboard__scrim.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* --- Sidebar --------------------------------------------- */
.sidebar {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--sidebar-width);
    background: white;
    border-right: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    z-index: 500;
    transition: transform .25s ease;
}

.sidebar__header {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--gray-100);
    flex-shrink: 0;
}

.sidebar__title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0;
    flex: 1;
}

.sidebar__count {
    min-width: 2rem;
    padding: .2rem .6rem;
    border-radius: 999px;
    background: var(--brand-green-50);
    color: var(--brand-green-700);
    font-size: .8rem;
    font-weight: 700;
    text-align: center;
}

.sidebar__close {
    display: none;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--gray-500);
    border: 0;
    border-radius: var(--radius);
    cursor: pointer;
}
.sidebar__close:hover { background: var(--gray-100); color: var(--gray-900); }

.sidebar__list {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.sidebar-item {
    border-bottom: 1px solid var(--gray-100);
}

/* --- Sidebar actions (accordion triggers) ---------------- */
.sidebar-action {
    display: flex;
    align-items: center;
    gap: .9rem;
    width: 100%;
    padding: 1rem 1.25rem;
    background: transparent;
    border: 0;
    text-align: left;
    font-family: inherit;
    font-size: .95rem;
    font-weight: 500;
    color: var(--gray-700);
    text-decoration: none;
    cursor: pointer;
    min-height: 56px;
    transition: background .15s ease, color .15s ease;
}
.sidebar-action:hover {
    background: var(--brand-green-50);
    color: var(--brand-green-700);
}
.sidebar-action > span {
    flex: 1;
}

.sidebar-action__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--gray-500);
}
.sidebar-action:hover .sidebar-action__icon { color: var(--brand-green-700); }

.sidebar-action__chevron {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: var(--gray-400);
    transition: transform .2s ease;
}
.sidebar-action[aria-expanded="true"] .sidebar-action__chevron {
    transform: rotate(90deg);
    color: var(--brand-green-700);
}

.sidebar-action__meta {
    font-size: .7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: var(--gray-400);
    padding: .2rem .5rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

/* --- Sidebar expandable panel ---------------------------- */
.sidebar-panel {
    display: none;
    padding: 1rem 1.25rem 1.25rem;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.sidebar-panel.is-open {
    display: block;
    animation: sidebar-panel-in .2s ease;
}
@keyframes sidebar-panel-in {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
}

.form-hint {
    margin: 0 0 .75rem;
    font-size: .8rem;
    color: var(--gray-500);
    line-height: 1.5;
}
.form-hint code {
    font-size: .75rem;
    background: white;
    border: 1px solid var(--gray-200);
    padding: 1px 5px;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
}

/* --- Leaflet markers and popups -------------------------- */
.leaflet-tooltip.trap-label {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 2px 6px;
    font-size: .7rem;
    font-weight: 600;
    color: var(--gray-700);
    box-shadow: var(--shadow-sm);
}
.leaflet-tooltip.trap-label::before { display: none; } /* hide tooltip arrow */

/*  leaflet controls (top-right) */
.leaflet-top.leaflet-right {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 1000;
    padding: 0;
}
.leaflet-top.leaflet-right .leaflet-control {
    margin: 0 0 .5rem 0;
    clear: both;
    float: none;
}

/* --- Mobile layout --------------------------------------- */
@media (max-width: 768px) {
    .dashboard__map {
        left: 0;   /* map takes the full width */
    }
    .dashboard__menu-btn {
        display: flex;
    }
    .sidebar {
        width: min(86vw, 360px);
        box-shadow: var(--shadow-xl);
        transform: translateX(-100%);
    }
    .sidebar.is-open {
        transform: translateX(0);
    }
    .sidebar__close {
        display: flex;
    }
}

.leaflet-popup-content-wrapper { border-radius: var(--radius); }
.leaflet-popup-content {
    margin: .75rem 1rem;
    font-size: .85rem;
    font-family: var(--font-sans);
}
.leaflet-popup-content strong { color: var(--gray-900); }
.leaflet-popup-content .popup-muted { color: var(--gray-500); }
.leaflet-popup-content .popup-coords {
    font-size: .75rem;
    color: var(--gray-500);
}

/*    page wrappers for content pages (contact etc.)*/
.page {
    max-width: 40rem;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.page__header { text-align: center; margin-bottom: 2rem; }
.page__title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: .5rem;
}
.page__lead { color: var(--gray-500); }

/*   utility set*/
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.text-center { text-align: center; }
.hidden { display: none !important; }
.mt-2 { margin-top: .5rem; }
.mt-4 { margin-top: 1rem; }
.mb-4 { margin-bottom: 1rem; }
/*    error pages (400 / 403 / 404 / 500)   */
.error-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: calc(100vh - var(--nav-height));
    padding: 2rem 1rem 3rem;
}

.error-page__code {
    font-size: clamp(3rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.02em;
    color: var(--brand-green);
}

.error-page__title {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-top: .5rem;
}

.error-page__text {
    max-width: 26rem;
    color: var(--gray-500);
    margin: .5rem 0 1.75rem;
}

.error-page__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .6rem 1.25rem;
    font-size: .9rem;
    font-weight: 600;
    color: #fff;
    background: var(--brand-green);
    border: 1px solid var(--brand-green);
    border-radius: var(--radius);
    box-shadow: 0 1px 2px rgba(22, 163, 74, .25);
    transition: background .15s ease, border-color .15s ease;
}
.error-page__btn:hover {
    background: var(--brand-green-hover);
    border-color: var(--brand-green-hover);
    color: #fff;
}
.error-page__btn:focus-visible {
    outline: 2px solid var(--brand-green);
    outline-offset: 2px;
}