:root {
    /* Color Palette */
    --color-background: #000000 !important;
    --color-text: #ffffff !important;
    --color-text-other: #000000 !important;
    --color-header-bg: #2482ba !important;
    --color-sidebar-bg: #29a4ed !important;
    --color-card-bg: #2F2C27 !important;    /* Using card bg for form container */
    --color-dashboard-bg: #ffffff !important;
    --color-input-bg: #fff !important;
    --color-primary-accent: #29a4ed !important;
    --color-primary-accent-hover: #42b72a !important;
    --color-border-subtle: #4a4a4a !important;
    --color-error: #f44336 !important; /* Added for potential future validation */
    --color-disabled: #5a5a5a !important; /* Added for disabled button */
    --color-overlay-bg: rgba(0, 0, 0, 0.75) !important; /* Overlay background */

    /* Font */
    --font-family-base: 'Manrope', sans-serif !important;

    /* Spacing */
    --space-xs: 0.25rem !important; --space-sm: 0.5rem !important; --space-md: 1rem !important;
    --space-lg: 1.5rem !important; --space-xl: 2rem !important; --space-xxl: 3rem !important;

    /* Sizes */
    --header-height: 60px !important;
    --sidebar-width: 250px !important;

    /* Transitions */
    --transition-speed: 0.3s !important;
    --transition-ease: ease !important;

    /* Borders */
    --border-radius-sm: 4px !important;
    --border-radius-md: 8px !important;
    --border-radius-lg: 20px !important;
}