/* General table styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-family: Arial, sans-serif;
}

/* Table header */
th {
    background-color: #f2f2f2;
    color: #333;
    text-align: center;
    padding: 3px;
    border: 2px solid #9e9c9c;
    font-size: 16px;
}

/* Table body cells */
td {
    padding: 3px;
    border: 1px solid #9e9c9c;
    font-size: 16px;
}

/* Hover effect for rows */
tr:hover {
    background-color: #f9f9f9;
}
