html {
    font-size: 16px; /* Base font size */
}

body {
    background-color: #CCEECC;
    margin: 0 5%;
    
    background-image: url('/images/UnderConstruction.png');
    background-size: contain; /* This makes the image cover the whole background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-attachment: fixed; /* Keeps the background image fixed in place */
    background-position: center; /* Centers the image in the page */
}

h1 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
	font-size: 5rem;
	font-family: "Times New Roman", Times, serif;
}

h2 {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
	font-size: 2.5rem;
}

h3 {
    text-align: center;
	font-size: 1.8rem;
}

h4 {
    text-align: center;
	font-size: 1.5rem;
}

h5 {
	font-size: 1.2rem;
    display: inline;
}

h6 {
	font-size: 1.1rem;
    display: inline;
}

p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
}

img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    height: auto;
 }
 
table {
    width: 100%;
}

td {
    width: 33%;
}

.disabled {
    color: gray;	
}

/* Nav Bar */
.navbar {
    overflow: hidden;
    font-family: Arial, Helvetica, sans-serif;
}

.navbar a {
    float: left;
    font-size: 1rem;
    color: blue;
	font-weight: bold;
    text-align: center;
    padding: 0.3rem 0.6rem;
    text-decoration: none;
/* border-style: solid; */
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 1rem;    
    border: none;
    outline: none;
    color: blue;
	font-weight: bold;
    padding: 0.3rem 0.6rem;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover, .dropdown:hover .dropbtn {
    background-color: #ffbf00;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #bfff00;
    min-width: 160px;
    box-shadow: 0px 0.5rem 1rem 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 0.75rem 1rem;
    text-decoration: none;
    display: block;
    text-align: left;
}

.dropdown-content a:hover {
    background-color: #00FF00;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.small {
   font-size: 0.5rem; 
}

.flex-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-container > div {
    flex: 1 1 50%; /* Each item takes up 50% of the container */
    padding: 0.625rem;
    box-sizing: border-box;
}

@media (max-width: 600px) {
    html {
        font-size: 12px;
    }
    .button {
        font-size: 0.8rem;
        padding: 0.1rem 0rem;
    }
    select {
        font-size: 0.8rem;
        width: 8rem; /* Adjust width as needed */
    }
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
    }  
    .break-line::after {
        display: block; /* Forces line break on mobile devices */
    }
    .flex-container {
        flex-direction: column;
    }
    .flex-container > div {
        flex: 1 1 100%; /* Each item takes up 100% of the container on mobile */
    }
}

