﻿/* ───── Reset & global ───── */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
}

html {
    overflow-y: scroll;
    overflow-anchor: none;
}

/* ───── Layout ───── */

.page-container {
    padding: 1.5rem;
    width: 100%;
    max-width: 960px;
}

.main-content-wrapper {
    padding-top: 0.75rem;
    margin-top: 10px;
}

.mud-main-content {
    display: block !important;
    align-items: unset !important;
    justify-content: unset !important;
}

/* ───── Public layout ───── */

.public-layout {
    min-height: 100vh;
}

/* ───── Brand logo (programmatic SAFERSTAMPS rectangle) ─────
   Used by <AppLogo>. Mirrors the loader markup so the wordmark looks identical
   between first-paint loader and the rendered app. */

.brand-logo {
    display: inline-flex;
    align-items: baseline;
    gap: 0.05rem;
    background: #111111;
    padding: 0.35rem 0.65rem;
    border-radius: 3px;
    line-height: 1;
    user-select: none;
}

    .brand-logo .brand-safer {
        font-family: 'Bebas Neue', sans-serif;
        color: #FFD700;
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }

    .brand-logo .brand-stamps {
        font-family: 'Bebas Neue', sans-serif;
        color: #ffffff;
        font-size: 1.05rem;
        letter-spacing: 0.04em;
    }

    .brand-logo.brand-logo-lg {
        padding: 0.55rem 0.95rem;
    }

        .brand-logo.brand-logo-lg .brand-safer {
            font-size: 1.5rem;
        }

        .brand-logo.brand-logo-lg .brand-stamps {
            font-size: 1.5rem;
        }

/* ───── Section label ───── */

.section-label {
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--mud-palette-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    display: block;
    margin-bottom: 0.75rem;
}

/* ───── Empty state ───── */

.empty-state {
    font-size: 0.875rem;
    color: var(--mud-palette-text-secondary);
    padding: 1rem 0;
    text-align: center;
}

/* ───── Cursor utility ───── */

.cursor-pointer {
    cursor: pointer;
}
