:root {
    /* Brand Colors - Exact from Layout */
    --primary: #004cef;
    --primary-dim: #0042d3;
    --primary-fixed: #b0beff;
    --primary-fixed-dim: #9dafff;
    --on-primary: #faf8ff;
    --on-primary-fixed: #001f6e;
    --on-primary-fixed-variant: #0037b3;
    --on-primary-container: #00309e;

    --secondary: #4e45e4;
    --secondary-dim: #4135d8;
    --secondary-fixed: #e2dfff;
    --secondary-fixed-dim: #d2d0ff;
    --on-secondary: #fbf7ff;
    --on-secondary-fixed: #2a13c5;
    --on-secondary-fixed-variant: #4a40e0;
    --on-secondary-container: #3f33d6;

    --tertiary: #006d4a;
    --tertiary-dim: #005f40;
    --tertiary-fixed: #69f6b8;
    --tertiary-fixed-dim: #58e7ab;
    --on-tertiary: #e6ffee;
    --on-tertiary-fixed: #00452d;
    --on-tertiary-fixed-variant: #006544;
    --on-tertiary-container: #005a3c;

    --error: #ac3149;
    --error-dim: #770326;
    --error-container: #f76a80;
    --on-error: #fff7f7;
    --on-error-container: #68001f;

    /* Surface Colors */
    --background: #faf8ff;
    --surface: #faf8ff;
    --surface-dim: #cdd9ff;
    --surface-bright: #faf8ff;
    --surface-variant: #d9e2ff;
    --surface-tint: #004cef;
    --surface-container-lowest: #ffffff;
    --surface-container-low: #f2f3ff;
    --surface-container: #eaedff;
    --surface-container-high: #e2e7ff;
    --surface-container-highest: #d9e2ff;

    --on-surface: #213156;
    --on-surface-variant: #4f5e86;
    --on-background: #213156;
    --outline: #6a7aa3;
    --outline-variant: #a2b1dd;
    --inverse-surface: #060e20;
    --inverse-on-surface: #959cb5;
    --inverse-primary: #6a89ff;

    /* Feedback */
    --success: #10b981;
}

/* Base Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--surface);
    color: var(--on-surface);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Common Layout Utilities */
.container-full {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow-x: hidden;
}

.max-width-7xl {
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

/* Icons & Global States */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    vertical-align: middle;
}

[x-cloak] { 
    display: none !important; 
}

/* Highly Visible Toast Notification */
.toast-notification {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #69f6b8;
    color: #00452d;
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.2);
    z-index: 99999;
    border: 1px solid #006d4a;
    pointer-events: none;
}
