/* General Body and Header Styles */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
    color: #333;
}

h2 {
    font-family: 'Bebas Neue', sans-serif;
    color: #e31c24;
    /* Red header */
    text-align: center;
    margin-bottom: 1rem;
}

#countdown,
#last-updated {
    text-align: center;
    font-weight: bold;
    color: #e31c24;
    /* Red text */
    margin-top: 0.5rem;
}

/* Tab Navigation Styles */
.nav-tabs {
    background-color: #343a40;
    /* Dark background */
    border-radius: 10px 10px 0 0;
    margin-bottom: 1rem;
}

.nav-link {
    color: #6c757d;
    /* Mid-grey for inactive tabs */
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    transition: background-color 0.2s, color 0.2s;
}

.nav-link.active {
    background-color: #e31c24;
    /* Red active tab */
    color: white;
    font-weight: bold;
}

.nav-link:hover {
    background-color: #6c757d;
    /* Mid-grey on hover */
    color: white;
}

/* Tab Content Styling */
.tab-content {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0 0 10px 10px;
    padding: 1rem;
}

/* Table Styling */
table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
}

table th,
table td {
    padding: 8px 12px;
    text-align: center;
    font-size: 14px;
    border-bottom: 2px solid #ddd;
}

table th {
    background-color: #343a40;
    /* Dark header */
    color: #fff;
    font-weight: bold;
}

table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tbody tr:hover {
    background-color: #f1f1f1;
    cursor: pointer;
}

/* Optional: Icons */
.icon {
    width: 18px;
    height: 18px;
    margin-right: 5px;
}