/* styles.css */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex; /* Use flexbox for layout */
    font-family: Arial, sans-serif;
}

table, th, td {
    border: 1px solid black;
    border-collapse: collapse;
    padding: 8px;
    text-align: right;
}
th {
    background-color: #f2f2f2;
}

button {
    width: 200px;
    height: 30px;
    font-size: large;
    border-radius: 10px 5px 0px 0px;
    margin-right: 1px;
    border-bottom-width: 0px;
}
.sidebar {
    width: 200px; /* Set the width of the sidebar */
    background-color: #f1f1f1;
    height: 100vh; /* Full height of the viewport */
    position: fixed; /* Keep the nav bar in place while scrolling main content */
    overflow: auto; /* Enable scrolling if the nav content is long */
}

.sidebar ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
}

.sidebar a {
    display: block; /* Make links block-level to fill container */
    color: black;
    padding: 16px;
    text-decoration: none; /* Remove underlines */
    transition: 0.3s;
}

.sidebar a.active {
    background-color: #04AA6D; /* Style the active link */
    color: white;
}

.sidebar a:hover:not(.active) {
    background-color: #555; /* Hover effect */
    color: white;
}

.content {
    margin-left: 200px; /* Match the sidebar width to prevent content overlap */
    padding: 20px;
    flex-grow: 1; /* Allow content to take up remaining space */
}

.tabcontent { display: none; padding: 20px; border: 1px solid #ccc; }
.tab button.active { background-color: #ccc; }

}
