
        /* Basic CSS reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html, body {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overscroll-behavior: none;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: #fff;
            color: #000;
            transition: background-color 0.5s, color 0.5s;
        }

        .content {
            flex: 1;
            padding: 20px;
        }

        body.dark-mode {
            background-color: hsl(204, 5%, 15%);
            color: #fff;
        }

        /* Navbar container */
        .navbar {
            background-color: hsla(204,98%,24%);
            color: whitesmoke;
            border-bottom: 2px solid black; /* Add a 2px whitesmoke border at the bottom */
        }

        /* Dark theme navbar */
        .navbar.dark-mode {
            background-color: hsla(204,98%,24%);
            border-bottom: 2px solid whitesmoke; 
        }

        /*ridiculous for the navbar text*/
        .navbar div ul li a {
            color: whitesmoke;
        }

        .navbar div a {
            color: whitesmoke;
        }


        /* Footer styling */
        .footer {
            background-color: hsla(204,98%,24%);
            text-align: center;
            padding: 10px 0;
            width: 100%;
            border-top: 2px solid black;
        }

        .footer.dark-mode {
            background-color: hsla(204,98%,24%);
            border-top: 2px solid whitesmoke;
        }

        /* Styling for gallery view */
        .gallery {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
        }

        .gallery img {
            max-width: 100%;
            height: auto;
            width: 200px;
        }

        @media screen and (max-width: 600px) {
            .gallery {
                flex-direction: column;
                align-items: center;
            }

            .plot {
                width: 100%;
                height: auto;
            }
        }

        .accordion-container {
            margin: 20px auto;
            width: 80%;
            max-width: 800px;
        }
        /*
/* Accordion styling */
.accordion-button {
    color: black;
    background-color: whitesmoke;
    border: 2px solid black;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.accordion-button:not(.collapsed) {
    background-color: #f0f0f0; /* Slightly darker when expanded */
}

.accordion-body {
    background-color: #fff;
    color: black;
    transition: background-color 0.3s, color 0.3s;
}

/* Dark mode accordion styles */
body.dark-mode .accordion-button {
    background-color: hsl(195, 5%, 10%); /* Darker background */
    color: white;
    border: 2px solid whitesmoke; /* Slightly lighter border */
}

body.dark-mode .accordion-button:not(.collapsed) {
    background-color: #232222; /* Darker when expanded */
}

body.dark-mode .accordion-body {
    background-color: rgb(0, 15, 26);
    color: white;
    border-top: 1px solid #777; /* Border at the top of accordion body */
}