@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhai+2:wght@400..800&display=swap');
/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: lightgray;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

/* Main Container */
.container {
    font-family: 'Baloo Bhai 2',cursive;
    width: 90%;
    max-width: 800px;
    background: #fff;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.container h2 {
    font-family: 'Baloo Bhai 2',Cursive;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    color: #333;
    
}
.container h2 img{
    width: 20px;
    height: 20px;
    border-radius: 50%;
}
div table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}
div table th, td {
    padding: 10px;
    text-align: center;
    border: 1px solid #ddd;
}
div table th {
    background-color: #f2f2f2;
}
.container .noMargin{
    margin: 0;
}
 #note_Comp{
    font-weight: 600;
}
.container p #socialFB{
    color:#000;
    text-decoration: none;
}
.container p #socialFB:hover{
    color: #007bff;
    font-weight: bold;
}

#subjects h3{
    color: #00bfa6;
    text-align: center;
    text-transform: uppercase;
}
#subjects hr{
    border: 2px solid #00bfa6;
    border-radius: 2px;
}
#subjects #section-divider{
    margin: 20px 0;

}

/* Subject Groups */
.subject-group {
    margin-bottom: 15px;
}

/* Labels */
label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

/* Select Dropdowns */
select {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 16px;
    background-color: white;
    cursor: pointer;
}
button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.container #display_content{
    display: flex;
    width: 100%;
    max-width: 800px;
    border-radius: 4px;
}
/* GPA Display */
.gpa-display {
    width: 50%;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 20px;
    padding: 10px;
    background: #f0f0f0;
}
/* Simple and Fixed Footer */
footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    /* max-width: 800px; */
    background-color: #5a5252;
    color: #000;
    padding: 5px 0;
    text-transform: uppercase;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
}

footer p {
    margin: 0;
    font-family: 'Baloo Bhai 2', cursive;
}
/* Responsive Design for Different Devices */

/* Mobile Screens (up to 480px) */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 15px;
    }

    select {
        font-size: 14px;
        padding: 10px;
    }

    .gpa-display {
        font-size: 18px;
        padding: 8px;
    }
}

/* Tablets (481px - 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        width: 85%;
        padding: 20px;
    }

    select {
        font-size: 16px;
        padding: 12px;
    }

    .gpa-display {
        font-size: 20px;
    }
}

/* Laptops and Larger Screens (769px and above) */
@media (min-width: 769px) {
    .container {
        max-width: 800px;
        padding: 25px;
    }

    select {
        font-size: 18px;
        padding: 12px;
    }

    .gpa-display {
        font-size: 24px;
    }
}
