body {
    font-family: 'Juana', serif; /* Set Juana as the font for the body */
    margin: 0;
    padding: 0;
    display: flex; /* Use flexbox for layout */
}
.sidebar {
    width: 250px; /* Fixed width for sidebar */
    background-color: #4CAF50;
    color: white;
    padding: 20px;
    height: 100vh; /* Full height */
    box-sizing: border-box;
}
.sidebar h2 {
    font-size: 24px; /* Increase font size for sidebar title */
    margin-bottom: 20px;
}
.sidebar ul {
    list-style-type: none; /* Remove bullets */
    padding: 0;
}
.sidebar ul li {
    margin-bottom: 15px; /* Add space between items */
}
.sidebar ul li a {
    color: white;
    text-decoration: none; /* Remove underline */
    font-size: 18px; /* Increase font size for links */
}
.sidebar ul li a:hover {
    text-decoration: underline; /* Underline on hover */
}
.content {
    flex: 1; /* Take up remaining space */
    padding: 20px;
}
h2 {
    color: #333;
    margin-bottom: 20px;
    font-size: 28px; /* Increase font size for main title */
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 18px;
    text-align: left;
}
th, td {
    padding: 12px 15px;
    border: 1px solid #ddd;
}
thead {
    background-color: #f2f2f2;
}
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}
tbody tr:hover {
    background-color: #f1f1f1;
}
th {
    background-color: #4CAF50;
    color: white;
}
td {
    color: #333;
}

