/* General body styling */
body {
    background-color: white; /* Set background color to white */
    color: black; /* Set text color to black */
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}
h1, h2, h3, h4, h5 {
    text-align: center;
}

a {
    color: black; /* Ensure links are visible against a white background */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Navbar styling */
nav {
    margin-top: 15px;
}

nav a {
    color: black; /* Set navbar links to black */
    text-decoration: none;
    margin: 0 10px;
    font-weight: bold;
}

nav a:hover {
    color: #4CAF50;
}

/* General container styling */
.content {
    padding: 20px;
}
legend {
    font-weight: bold;
}


/* Button styling */
button {
    background: linear-gradient(to top, rgb(0, 82, 0), rgb(90, 238, 110));
    color: white;
    border-radius: 12px;
    padding: 15px;
    cursor: pointer;
    text-align: center;
    font-size: 16px;
    margin: 10px;
}

button:hover {
    background: linear-gradient(to top, rgb(2, 150, 2), rgb(50, 200, 90));
}

/* Footer styling */
footer {
    text-align: center;
    padding: 10px;
    background-color: #333;
    color: white;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Table styling */

/* Responsive styles */
@media (max-width: 600px) {
    .content {
        padding: 10px;
    }

    nav a {
        display: inline-block;
        margin: 5px 5px; /* Adjust margins for smaller screens */
    }
}

/* Ensure the navigation items stay compact and wrap nicely */
nav a {
    display: inline-block;
    margin: 5px 10px; /* Add a small margin to create space between links */
    white-space: normal; /* Allow the links to wrap if necessary */
}

/* Center the navigation menu */
nav {
    text-align: center;
    display: flex;
    flex-wrap: wrap; /* Allow wrapping when there are too many items */
    justify-content: center;
}





.container {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.left-section, .right-section {
    width: 45%;
    border: 1px solid #ccc;
    padding: 10px;
    margin: 0 10px;
    background-color: #f9f9f9;
}
.dailyreport {
    padding: 10px;
    margin: 0 10px;
    border: 1px solid #ccc;
    justify-content: center;
    margin-top: 20px;
    background-color: #f9f9f9;
}

table {
    width: 95%;
    margin: auto;
    border-collapse: collapse;
    text-align: left;
}

table, th, td {
    border: 1px solid rgba(255, 255, 255, 0.13);
}

th, td {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding: 8px;
}

th {
    background-color: #4CAF50; /* Green background for table headers */
    color: white;
}

tr:nth-child(even) {
    background-color: #d1d1d1;
}


/*
table {
    width: 80%;
    border-collapse: collapse;
    margin: 20px auto;
}

th {
    background-color: #4CAF50;
    color: white;
    padding: 8px;
    text-align: left;
}

td {
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

h1, h2 {
    text-align: center;
}

img {
    border: 1px solid #ccc;
    margin: 5px;
    width: 100px;
    height: auto;
}

*/