/* Default Theme Styles (Light Mode) */
body {
    background-color: #cecdcd;
    color: #000000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

header {
    background-color: #0d0d0d;
    color: #333333;
}
/* Header Styling */
.header-content {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #212121, #0d0d0d);
    border-radius: 60px;
}
.header-content h1 {
    font-size: 3em;
    color: #f3f3f3;
}


/*main, section {
    background-color: #000000;
    color: #333333;
    transition: background-color 0.3s ease, color 0.3s ease;
}
    */

footer {
    background-color: #0b011c;
    color: #ffffff;
}

button, .back-button {
    background-color: #01000ae6;
    color: white;
    transition: background-color 0.3s ease, color 0.3s ease;
}

a {
    color: #0000EE;
}

a:hover {
    color: #0056b3;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: #ffffff;
    color: #000000;
}

header.dark-mode {
    background-color: #2633e0;
    color: #ffffff;
}
header .header-content.dark-mode {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #212121, #de1515);
    border-radius: 60px;
}
header .header-content.dark-mode h1 {
    font-size: 3.5em;
    color: #950c0c;
}


/*main.dark-mode, section.dark-mode {
    background-color: #242424;
    color: #ffffff;
}
*/
footer.dark-mode {
    background-color: #2633e0;
    color: #ffffff;
}

button.dark-mode, .back-button.dark-mode {
    background-color: #ffffff;
    color: #000000;
}

a.dark-mode {
    color: #ffffff;
}

a.dark-mode:hover {
    color: #ffffff;
}

/* Specific Section Colors (Customize as needed) */
.term-test-section {
    width: 90%;
    padding: 8px;
    border-radius: 20px;
    background: linear-gradient(135deg, #000027,#0b0247 );
    color: white;
    text-align: left;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    margin: 20px auto;
}

.term-tests-container {
    background: linear-gradient(135deg, #003cff38, #2100ff17);/* Semi-transparent white */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    border: 1px solid rgb(13 121 255 / 72%); /* Light border */
    border-radius: 15px; /* Rounded corners */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    padding: 8px; /* Spacing inside the container */
    color: #ffffff; /* White text for contrast */
    margin: 20px auto; /* Center the container */
    max-width: 1200px; /* Optional: Limit the container width */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}
.term-test-section.dark-mode {
    background-color: #333333;
}

.subject-container {
    padding: 15px;
    margin-left: 20px;
    border-left: 4px solid #141414;
    background: linear-gradient(135deg, #170c92, #00001f);
    border-radius: 20px;
    margin-top: 10px;
}

.subject-container.dark-mode {
    background-color: #2d2d2d;
    border-left: 4px solid #ffffff;
}

/* Breadcrumbs Styling */
.breadcrumbs {
    color: #333;
}

.breadcrumbs.dark-mode {
    color: #bbb;
}

