
html, body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
    height: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

header {
    background-color: #ff6e4e;
    color: white;
    padding: 10px 0;
    height: 80px; /* Fixed height for the header */
    
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Distributes space evenly between logo/site name and nav */    
    height: 100%; /* Ensures the container fills the header height */
    
}

.logo img {
    height: 100px;
    width: auto;
    margin-left: 30px;

}

nav .menu-toggle {
    display: none; /* Hidden on large screens */
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    margin-right: 20px;
    gap: 20px; /* Space between each navigation item */
    justify-content: flex-end; /* Pushes the nav items to the right */

}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    margin-right: 0px;
}

/* Main content container */

/* Main container */
.main-content.container {
    position: relative;
    padding: 15px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    height: 100%;
    max-width: 95%;
    max-height: calc(100vh - 140px);
    margin: auto;
    margin-top: 20px;
    box-sizing: border-box;
}

/* General styles for button containers */
.button-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Left top button and heading */
#leftContainer {
    top: 40px;
    left: 40px;
}

/* Right top button and heading */
#rightTopContainer {
    top: 40px;
    right: 40px;
}

/* Bottom middle button and heading */
#bottomMiddleContainer {
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
}

/* Button styling */
button {
    background-color: #ff6e4e; /* Default background color */
    color: white;
    border: 2px solid #ff6e4e;
    border-radius: 5px;
    padding: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

/* Heading styling */
h2 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
}

/* Hover effects for all buttons */
button:hover {
    background-color: white; /* Change background color on hover */
    color: #ff6e4e; /* Change text color on hover */
    border: 2px solid #ff6e4e; /* Keep the border color the same */
    transform: scale(1.05); /* Slightly enlarge the button on hover */
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Increase shadow on hover */
}


.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    width: 400px;
}

button {
    margin: 10px;
}

