* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(236, 236, 236);
    display: flex;
    min-height: 100vh;
}

.leftBar {
    color: #fff;
    width: 250px;
    padding: 16px;
    background-color: #1d3047;
}
.leftBar h2 {
    margin-bottom: 32px;
}

.leftBar a {
    margin-bottom: 16px;
    display: block;
    color: #fff;
    text-decoration: none;
}

.leftBar a:hover {
    text-decoration: underline;
}


.main {
    flex-grow: 1;
    margin: 32px;
}

.main .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.main .card {
    background-color: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 0 10px #babcbe;
}

.table h2 {
    margin: 16px;
}

.table table {
    min-width: 100%;
    border-collapse: collapse;
    margin-top: 16px;
} 

table th {
    background-color: #fff;
}

table th, table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ccc;
}