/* Parentals Light Theme Styles */

:root {
    --theme-body-bg: #ffffff;
    --theme-body-color: #212529;
    --theme-card-bg: #ffffff;
    --theme-card-border: rgba(0, 0, 0, 0.125);
    --theme-table-bg: #ffffff;
    --theme-table-striped-bg: #f8f9fa;
    --theme-table-hover-bg: #e9ecef;
    --theme-input-bg: #ffffff;
    --theme-input-border: #ced4da;
    --theme-input-color: #212529;
    --theme-dropdown-bg: #ffffff;
    --theme-dropdown-border: rgba(0, 0, 0, 0.15);
    --theme-dropdown-color: #212529;
    --theme-dropdown-hover-bg: #e9ecef;
    --theme-list-group-bg: #ffffff;
    --theme-list-group-border: rgba(0, 0, 0, 0.125);
    --theme-muted-color: #6c757d;
    --theme-hr-color: rgba(0, 0, 0, 0.1);
}

/* Light theme is Bootstrap's default, minimal overrides needed */
body {
    background-color: var(--theme-body-bg);
    color: var(--theme-body-color);
}
