body {
    font-family: Arial, sans-serif;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    color: #0000cc;
    text-decoration: none;
}

a:hover {
    color: #000099;
    text-decoration: underline;
}

#content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.badge {
    padding: 3px 4px;  
}


table {
    width: 600px;
    border-collapse: collapse;
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #ddd;
    text-align: right;
    padding: 8px;
}

th {
    background-color: #f2f2f2;
}

th:first-child, td:first-child {
    text-align: left;
}

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

tr:last-child {
    font-weight: bold;
}

.coverage {
    margin: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    padding: 20px;
    box-sizing: border-box;
}

.chart {
    max-width: 600px;
    max-height: 200px;
}

.missing-lines {
    font-style: italic;
    font-size: 12px;
    color: gray;
    margin-top: 10px;
}

.notes {
    margin-top: 20px;
    max-width: 600px;
}

.notes ul {
    list-style-type: none;
    padding: 0;
}

#description {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

footer {
    margin-top: auto;
    text-align: right;
}