/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

main {
    padding: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

header {
    color: blue;
    max-width: 800px;
    padding: 20px;
}

#wrapper {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(104, 5, 5, 0.1);
}

table {
    margin-top: 30px;
}

thead {
    background-color: #dddddd;
}

.display-none {
    display: none !important;
}

tbody td {
    text-transform: uppercase;
}

#course,
#credits,
#grade {
    border-color: #333;
}

/* Table Styling */
.gpa-table {
    width: 90%;
    max-width: 600px;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.gpa-table th,
.gpa-table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: center;
}

.gpa-table th {
    background-color: #2c3e50;
    color: white;
}

.gpa-table tr:nth-child(even) {
    background-color: #f8f8f8;
}

/* Highlight Specific Grades */
.gpa-table .grade-a {
    background-color: #27ae60 !important;
    /* Green */
    color: white;
    font-weight: bold;
}

.gpa-table .grade-f {
    background-color: #c0392b !important;
    /* Red */
    color: white;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 600px) {
    .gpa-table {
        width: 100%;
    }
}

/* Section Container */
.gpa-section {
    max-width: 800px;
    margin: 20px auto;
    background: whitesmoke;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
}

        /* Responsive Design */
        @media (max-width: 600px) {
            .gpa-section {
                width: 90%;
                padding: 15px;
            }
        }

/* List Styling */
ul {
    color: #555;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

        /* Highlighted Terms */
        .highlight {
            color: #2c3e50;
            font-weight: bold;
        }

/* Footer Styles */
footer {
    margin-top: 40px;
    padding: 20px;
    background-color: #333;
    color: white;
    text-align: center;
}

.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: lightgray;
}

.footer-main-link {
    margin-bottom: 10px;
}

.footer-main-link a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-main-link a:hover {
    color: lightgray;
}

.footer-main-link p {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 16px;
    transition: color 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 14px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 22px;
    }

    h3 {
        font-size: 18px;
    }

    footer {
        position: relative;
        padding: 10px 0;
    }
}