<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left-content {
    flex: 1;
    padding: 0 10px;
}

.center-content {
    flex: 1;
    text-align: center;
}
.backgroundcolor {
    background-color: lightgoldenrodyellow;
}
.backgroundcolorRed {
    background-color: tomato;
}


.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px; /* Optional: adds space between cards */
    flex-wrap: wrap; /* Ensures the cards wrap to the next line if they don't fit */
}

.card {
    width: 32%; /* Make each card take 1/3 of the container width */
    min-width: 100px; /* Ensure the card doesn't get too small */
    background-color: lightgoldenrodyellow;
}


/* Responsive styles */
@media (max-width: 768px) {
    .container-fluid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .left-content {
        margin-bottom: 10px;
    }

    .center-content {
        width: 100%;
    }

    .nav {
        flex-direction: column;
    }

    .nav-link {
        margin: 5px 0;
    }
    .card-container {
        flex-direction: column;
        align-items: center; /* Align cards to the center */
    }

    .card {
        width: 100%; /* Cards take up 80% of the screen width on smaller devices */
        margin-bottom: 20px; /* Optional: adds space between stacked cards */
        background-color: lightgoldenrodyellow;
    }
}



@media (max-width: 480px) {
    .grid-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .container-fluid {
        flex-direction: column;
        align-items: center;
        
    }
}
.transparent-button {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: inherit !important; /* Use default text color */
}


.grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: transparent;
    border:none;
    height: 100vh; /* Make it take full viewport height */
}

.grid-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 20px;
    text-align: center;
    background-color: lightgoldenrodyellow;
}

.selection-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px; /* Space between select and grid */
    width: 100%; /* Makes the container occupy the full width */
}

.custom-button {
    background-color: lightgoldenrodyellow !important;
    color: blue !important;
    border: none !important; /* Optional: add a visible border */
}

#grid {
    flex-grow: 1;
    width: 100%; /* Makes the grid occupy half the page width */
    /* max-width: 800px;  Optional: Set a maximum width */
    border-collapse: collapse;
}

    #grid td, #grid th {
        border: 1px solid #ccc;
        padding: 8px;
        /* text-align: center; */
        white-space: nowrap; /* Prevents text wrapping */
    }

    #grid th {
        background-color: #f4f4f4;
    }</pre></body></html>