/* AAU Space Robotics Color Palette */

:root {
    /* Primary Colors */
    --primary-blue: #0c426f;
    --primary-purple: #4E4875;
    --primary-dark: #211a52;

    /* Secondary Colors */
    --secondary-blue: #125d9d;
    --secondary-light: #E4E4E4;

    /* Neutral Colors */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --gray: #666666;
    --dark-gray: #333333;
    --light-text: #b4b4b4;

    /* Background Colors */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0c426f;

    /* Text Colors */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #ffffff;
    --text-muted: #b4b4b4;

    /* Gradient Colors */
    --gradient-start: #ffffff;
    --gradient-end: #4E4875;

    /* Shadow Colors */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-medium: rgba(0, 0, 0, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.3);

    /* Status Colors */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
    --info: #17a2b8;
}