:root {
    /* Primary Colors - Slightly adjusted from parent system */
    --primary-100: #9EB5E8;  /* Lighter blue */
    --primary-200: #667DB3;
    --primary-300: #42588B;
    --primary-400: #263860;
    --primary-500: #162035;

    /* Secondary Colors - More purple tint */
    --secondary-100: #BD9EE9;
    --secondary-200: #8665B5;
    --secondary-300: #61418D;
    --secondary-400: #3E2661;
    --secondary-500: #231635;

    /* Tertiary Colors - More vibrant green */
    --tertiary-100: #97E9C8;
    --tertiary-200: #5EB592;
    --tertiary-300: #3A8D6C;
    --tertiary-400: #206147;
    --tertiary-500: #133628;

    /* Common UI Colors */
    --background: #f5f7fa;  /* Light gray background */
    --info-background: var(--tertiary-100);
    --text-primary: var(--primary-500);
    --text-secondary: var(--primary-400);
    --link-color: var(--primary-300);
    --link-hover: var(--primary-400);
    --header-bg: var(--primary-400);
    --header-text: #ffffff;
    --footer-bg: var(--primary-500);
    --footer-text: #ffffff;
    
    /* Card Colors */
    --card-bg: #ffffff;
    --card-border: var(--primary-100);
    --card-shadow: rgba(0, 0, 0, 0.1);
    
    /* Button Colors */
    --btn-primary-bg: var(--primary-300);
    --btn-primary-text: #ffffff;
    --btn-primary-hover: var(--primary-400);
    --btn-danger-bg: #dc3545;
    --btn-danger-hover: #c82333;
}
