
body {
    font-family: 'YourChosenFont', sans-serif;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

caption {
    caption-side: top;
    margin-bottom: 10px;
    font-weight: bold;
}

th, td {
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
}

thead th {
    background-color: #f0f0f0;
}

tfoot td {
    font-style: italic;
}

td:hover {
    background-color: #e0e0e0;
}

td:nth-child(odd) {
    background-color: #f9f9f9;
}

/* Media Queries */

/* Tablet and Smartphone Layout (min-width: 768px) */
@media (min-width: 768px) {
    /* Adjustments for tablet/smartphone if needed */
}

/* Desktop Layout (min-width: 992px) */
@media (min-width: 992px) {
    /* Further adjustments for desktop if needed */
}

/* Specific rule for smallest display in Tablet/Smartphone range */
@media (max-width: 768px) {
    body {
        font-size: small;
    }
    table, th, td {
        font-size: small;
        padding: 5px;
    }
}