
body { margin: 0; font-family: sans-serif; }
.container { display: flex; height: 100vh; }
.sidebar { width: 200px; background: #2c3e50; color: white; padding: 20px; }
.sidebar button { 
    display: block; 
    width: 100%; 
    padding: 10px; 
    margin-bottom: 10px; 
    background: #34495e; 
    border: none; 
    color: white; 
    cursor: pointer; 
    text-align: left;
}
.sidebar button:hover { background: #1a252f; }
#main-content { flex-grow: 1; padding: 20px; background-color: #ecf0f1; }
.sidebar {
    width: 250px;
    height: 100vh;
    background-color: #2c3e50; /* Dark blue/gray */
    color: white;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    border-bottom: 1px solid #495057;
    margin-bottom: 10px;
}


#reportTable {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-family: Arial, sans-serif;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

#reportTable thead {
    background-color: #2c3e50; /* Dark header */
    color: white;
}

#reportTable th, #reportTable td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

/* Zebra Striping */
#reportTable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

/* Hover effect */
#reportTable tbody tr:hover {
    background-color: #e9ecef;
}
#reportTable tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}