/*
 * Questionnaire Stylesheet - Blue Theme
 * This is an example alternative color scheme
 * To use this theme, change the stylesheet link in index.html to:
 * <link rel="stylesheet" href="style-blue.css">
 */

/* Import the base stylesheet */
@import url('style.css');

/* Override the theme variables with blue color scheme */
:root {
    /* Primary color (blue theme) */
    --primary-color: #007bff;
    --primary-hover: #0056b3;
    --primary-active: #004085;

    /* You can also override other variables here */
    /* For example, to make buttons more rounded: */
    /* --button-border-radius: 20px; */
}
