/* colors.css */

/* Color Palette */
:root {
    --primary-color: #004080;     /* Dark blue */
    --secondary-color: #003366;   /* Darker blue */
    --accent-color: #ffcc00;      /* Yellow accent */
    --error-color: #ff0000;       /* Red */
    --error-hover-color: #cc0000; /* Darker red */
    --background-color: #f9f9f9;  /* Light gray (unused here) */
    --text-color: #333;           /* Dark gray (unused here) */
    --light-background: #e8f1ff;  /* Light blue (unused here) */

    /* Additional Variables */
    --spacing: 10px;
    --border-radius: 5px;
    --box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
