/* CSS for the rounded table */
table {
    border-collapse: collapse;
    width: 100%;
    border-radius: 10px;
    overflow: hidden; /* Ensures that the border-radius is applied to the table */
}

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

th {
    background-color: #f2f2f2;
}

tr:hover {
    background-color: #f5f5f5;
}