/* Explain: Theme design tokens with navy and blue primary colors. - */
:root {
    --navy-color: #003e7e;
    --navy-hover: #002c59;
    --urgent-color: #0066cc;
    --urgent-hover: #004d99;
    --white-color: #FFFFFF;
    --off-white: #18181b;
    --steel-color: #27272a;
    --slate-color: #f1f5f9;
    --muted-color: #94a3b8;

    --primary-color: #003e7e;
    --primary-hover: #002c59;
    --secondary-color: #0066cc;
    --accent-color: #0066cc;
    --background-color: #121212;
    --surface-color: #1e1e1e;
    --text-color: #f8fafc;
    --text-muted: #94a3b8;
    --border-color: #27272a;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Roboto', sans-serif;
}