/* Explain: Theme design tokens with primary and accent colors. - */
:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #3b82f6;
    --accent-color: #0ea5e9;
    --background-color: #ffffff;
    --surface-color: #eff6ff;
    --text-color: #111827;
    --text-muted: #4b5563;
    --border-color: #e5e7eb;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
}