main > .container, main > .container-fluid
{
    padding: 0px 0px 0px;
}
.footer > .container, .footer > .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
}
.footer p {
    color: black; /* Ensure <p> tags in the footer are black */
}

#game-container {
    position: relative;
    width: 100%;
    height: 80vh; /* Adjust height as needed */
}
main{
    margin-top: 0px;
    margin-left: 10px;
    margin-right: 30px;
}
#gameCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10; /* Ensure it is above other elements */
}       
    table.table {
        border-radius: 10px;
        overflow: hidden;
    }
    table thead tr th {
        background-color: #6a11cb !important;
        color: white !important;
        text-align: center;
    }

    table thead {
        background-color: #6a11cb;
        color: white;
    }
    /* Add to your <style> block */
    table thead th {
        background-color: #6a11cb !important;
        color: white !important;
        text-align: center;
    }
    /* Back Button */
    .top-nav .back-button {
        background-color:rgb(184, 119, 249);
        color: rgb(10, 3, 111);
        padding: 8px 16px;
        border-radius: 20px;
        text-decoration: none;
        font-weight: 500;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
    }
    .back-button:hover {
        background-color:rgb(255, 3, 255);
        color: #fff;
    }
    body {
        font-family: 'Roboto', sans-serif;
        background: linear-gradient(to bottom, #ece6fc, #ffffff);
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

    .minor-dashboard {
        padding: 25px;
        border-radius: 15px;
        box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
        background: white;
        max-width: 750px;
        left: 30px;
        margin: 20px auto;
    }

    /* Header Section */
    .header {
        display: flex;
        align-items: center;
        gap: 20px;
        margin: 20px;
    }

    .waving-hand {
        width: 90px;
        height: auto;
    }

    .minor-info {
        display: flex;
        flex-direction: column;
    }

    .minor-name {
        font-size: 2.5em;
        font-weight: bold;
        color: darkblue;
        margin: 0;
    }

    .minor-birth-year {
        font-size: 1.2em;
        color: gray;
        margin: 0;
        font-style: italic;
    }

    /* Section Content */
    .section-title {
        font-weight: bold;
        font-size: 1.4em;
        color: #333;
        text-align: center;
        margin-bottom: 15px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .minor-dashboard{
            margin-left: 70px;
        }
        .header {
            flex-direction: column;
            text-align: center;
        }

        .card-container {
            flex-direction: column;
            align-items: center;
        }

        .game-card {
            width: 90%;
        }
    }