/* General table styles */
.twitch-stats-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-family: Arial, sans-serif;
}

.twitch-stats-table th, .twitch-stats-table td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.twitch-stats-table th {
    background-color: #f4f4f4;
    color: #333;
}

/* Header specific styling */
.twitch-stats-table th {
    padding-top: 12px;
    padding-bottom: 12px;
    text-align: center;
}

/* Zebra striping for rows */
.twitch-stats-table tr:nth-child(even){background-color: #f2f2f2;}

/* Hover effect for rows */
.twitch-stats-table tr:hover {background-color: #ddd;}

/* Bold font for table header */
.twitch-stats-table th {
    font-weight: bold;
}