@import url("style.css");

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 2em;
}

caption {
    caption-side: top;
    font-weight: bold;
    margin-bottom: 10px;
}

th, td {
    border: 1px solid #001F54;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #001F54;
    color: white;
}

colgroup col:first-child {
    background-color: #f0f8ff;
}

tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #e0e0e0;
}

table td:empty {
    background-color: #ffecec;
}

@media (max-width: 768px) {
    table {
        overflow-x: auto;
        display: block;
    }
}
