﻿/* light-theme.css */
body {
    background-color: #f8f9fa; /* Very light gray */
    color: #212529; /* Dark gray text */
    transition: background-color 0.5s ease, color 0.5s ease;
}

.card {
    background-color: #ffffff;
    border-color: #dee2e6;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
}

h1, h2, h3, h4, h5, h6 {
    color: #007bff; /* A nice blue for headings */
}

a {
    color: #007bff;
}

/* Specific styles for the theme selector */
.theme-selector-wrapper {
    background-color: #e9ecef;
    border-radius: 5px;
    padding: 5px;
}

    .theme-selector-wrapper label {
        color: #212529 !important;
    }

.form-select {
    background-color: #ffffff;
    color: #212529;
    border-color: #ced4da;
}
