body {
    font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
    font-size: 15px;          /* slightly smaller than default */
    line-height: 1.5;
    color: #2c2c2c;
    background-color: #fafafa;
}
h1 {
    font-weight: 600;
    letter-spacing: -0.3px;
}

h2, h3 {
    font-weight: 600;
}
/* Navbar styling */
.navbar-brand { font-weight: bold; font-size: 1.5rem; color: #007bff; }
.nav-link { font-weight: 500; }
.nav-link:hover { color: #0056b3 !important; }
.badge-notify {
    background: #dc3545;
    color: #fff;
    font-size: 0.8rem;
    font-weight: bold;
    border-radius: 12px;
    padding: 0.25em 0.6em;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* ===== Results tables ===== */
table.results-table {
    border-collapse: collapse !important;
    background: #ffffff;
    font-size: 14px;
}

table.results-table th,
table.results-table td {
    border: 1px solid #e1e5ea !important;  /* force thin borders */
    padding: 5px 7px;
    vertical-align: middle;
}

table.results-table thead th {
    background: #f4f6f8;
    font-weight: 600;
}

table.results-table tbody tr:hover {
    background: #fafcff;
    
}

.totals-row {
    background: #f8fafc;
    font-weight: 600;
}

.center {
    text-align: center;
}

.page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.winner-cell {
    font-weight: 600;
    color: #1f2937;
}

.prediction-icon {
    width: 18px;
    height: 18px;
    opacity: 0.9;
}

.prediction-icon:hover {
    opacity: 1;
    transform: scale(1.15);
}