:root {

                /* Dark box, navbar bg, footer*/
                --color-dark-bg: #092d1b;

                --color-darkest-bg: #000000;
                
                /* Sidebar bg */
                --color-dark-accent-bg: #144528;
                
                /* Main background color */
                --color-main-bg: #1F6142;

                /* Accent green */
                --color-accent: #69f564;

                /* Light text */
                --color-light-text: #ffffff;

                /* Navbar link hover */
                --color-navbar-link-hover: #ffffff;

                /* Banner and page background */
                --header-image: url('banner.png');
                --body-bg-image: url('another.png');
            }

            

            body {
                font-family: "Trebuchet MS", Tahoma, Verdana, sans-serif;
                margin: 0;
                background-color: var(--color-darkest-bg);
                background-size: 50px;
                color: var(--color-light-text);
                background-image: var(--body-bg-image);
            }

            * {
                box-sizing: border-box;
            }

            /* below this line is CSS for the layout */

            /* this is a CSS comment
    to uncomment a line of CSS, remove the * and the /
    before and after the text */


            #container {
                max-width: 900px;
                margin: 0 auto;
                /* this centers the entire page */
            }

            /* the area below is for all links on your page
    EXCEPT for the navigation */
            #container a {
                color: var(--color-accent);
                font-weight: bold;
                /* if you want to remove the underline
      you can add a line below here that says:
      text-decoration:none; */
            }

            #header {
                width: 100%;
                background-color: var(--color-main-bg);
                /* header color here! */
                height: 150px;
                /* this is only for a background image! */
                /* if you want to put images IN the header, 
      you can add them directly to the <div id="header"></div> element! */
                background-image: var(--header-image);
                background-size: 100%;
            }

            /* navigation section!! */
            #navbar {
                height: 40px;
                background-color: var(--color-dark-bg);
                /* navbar color */
                width: 100%;
            }

            #navbar ul {
                display: flex;
                padding: 0;
                margin: 0;
                list-style-type: none;
                justify-content: space-evenly;
            }

            #navbar li {
                padding-top: 10px;
            }

            /* navigation links*/
            #navbar li a {
                color: var(--color-accent);
                font-weight: 800;
                text-decoration: none;
            }

            #navbar li a:hover {
                color: var(--color-navbar-link-hover);
                text-decoration: underline;
            }

            #flex {
                display: flex;
            }
            aside {
                background-color: var(--color-dark-accent-bg);
                width: 200px;
                padding: 20px;
                font-size: smaller;
            }

            main {
                background-color: var(--color-main-bg);
                flex: 1;
                padding: 20px;
                order: 2;
            }

            */ #leftSidebar {
                order: 1;
            }

            footer {
                background-color: var(--color-dark-bg);
                /* background color for footer */
                width: 100%;
                height: 40px;
                padding: 10px;
                text-align: center;
                /* this centers the footer text */
            }

            h1,
            h2,
            h3 {
                color: var(--color-accent);
            }

            h1 {
                font-size: 25px;
            }

            strong {
                /* this styles bold text */
                color: var(--color-accent);
            }

            /* this is just a cool box, it's the darker colored one */
            .box {
                max-height: 200px;        /* limits how tall the box gets */
                overflow-y: auto;         /* adds a scrollbar if the content is too tall */
                background-color: var(--color-dark-bg);
                border: 1px solid var(--color-accent);
                padding: 10px;
            }

            /* CSS for extras */

            #topBar {
                width: 100%;
                height: 30px;
                padding: 10px;
                font-size: smaller;
                background-color: var(--color-topbar-bg);
            }

            table {
    margin: 20px auto; /* centers the table horizontally */
    border-collapse: collapse; /* removes double borders */
    width: 80%; /* optional: makes the table a bit wider */
    background-color: var(--color-dark-bg); /* matches your dark box vibe */
}

table, td, th {
    border: 1px solid var(--color-accent); /* border color matches your theme */
    padding: 8px; /* spacing inside cells */
    text-align: left; /* keeps text readable */
}

th {
    background-color: var(--color-dark-accent-bg); /* makes headers stand out */
    color: var(--color-light-text); /* header text color */
}


table {
  table-layout: fixed;
  width: 100%;
}

td {
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  vertical-align: top;
}

td:first-child {
  width: 150px; /* adjust to fit your extensions */
}


            /* BELOW THIS POINT IS MEDIA QUERY */

            /* so you wanna change the width of your page? 
    by default, the container width is 900px.
    in order to keep things responsive, take your new height,
    and then subtrack it by 100. use this new number as the 
    "max-width" value below
    */

            @media only screen and (max-width: 800px) {
                #flex {
                    flex-wrap: wrap;
                }

                aside {
                    width: 100%;
                }

                /* the order of the items is adjusted here for responsiveness!
      since the sidebars would be too small on a mobile device.
      feel free to play around with the order!
      */
                main {
                    order: 1;
                }

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }

                #navbar ul {
                    flex-wrap: wrap;
                }
            }