:root {
    --ember: #d460a0;
    --plum: #77338c;
    --ink: #292929;
    --line: #dee4ea;
    --bg: #f9fcff;
    --card: #ffffff;
    --muted: #6f7780;
    --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* {
    box-sizing: border-box;
}

html,
body,
#app {
    min-height: 100vh;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font: 14px/1.5 var(--font);
}

.admin-shell {
    min-height: 100vh;
}

.admin-topbar {
    align-items: center;
    background: #10192a;
    color: #dfe6f0;
    display: flex;
    height: 56px;
    justify-content: space-between;
    padding: 0 16px;
}

.admin-brand {
    align-items: center;
    color: #ffffff;
    display: flex;
    font-size: 16px;
    font-weight: 700;
    gap: 9px;
    text-decoration: none;
}

.admin-brand small {
    color: #8fa0b8;
    font-size: 12px;
    font-weight: 400;
}

.admin-mark {
    background: linear-gradient(135deg, var(--ember), var(--plum));
    border-radius: 7px;
    display: inline-block;
    height: 26px;
    width: 26px;
}

.admin-signout {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    color: #ffffff;
    cursor: pointer;
    padding: 7px 11px;
}

.admin-content {
    min-height: calc(100vh - 56px);
}

.admin-placeholder {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 56px);
    padding: 24px;
    text-align: center;
}

.admin-placeholder h1 {
    font-size: 20px;
    font-weight: 650;
    letter-spacing: 0;
    margin: 0;
}

.loading-dot {
    animation: pulse 900ms ease-in-out infinite;
    background: var(--ember);
    border-radius: 999px;
    height: 10px;
    width: 10px;
}

@keyframes pulse {
    0%,
    100% {
        opacity: .35;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}
