* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: system-ui, -apple-system, sans-serif;
}

body {
    background-color: #0b111e;
    color: #f8fafc;
    padding-bottom: 40px;
}

/* Header UI */
.main-header {
    background-color: #111827;
    padding: 15px 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2937;
}

.logo-area {
    font-size: 1.4rem;
    font-weight: bold;
    color: #10b981; /* Premium Green */
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-indicator {
    background-color: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Navigation Tabs Menu */
.league-tabs {
    background-color: #111827;
    padding: 8px 4%;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    border-bottom: 1px solid #1f2937;
}

.tab-btn {
    background: none;
    border: none;
    color: #9ca3af;
    padding: 6px 14px;
    cursor: pointer;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 6px;
    transition: all 0.2s;
}

.tab-btn:hover {
    color: #f3f4f6;
}

.tab-btn.active {
    background-color: #10b981;
    color: #0b111e;
    font-weight: bold;
}

/* Main Dashboard Split Grid */
.dashboard-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    max-width: 1400px;
    margin: 25px auto;
    padding: 0 20px;
    gap: 25px;
}

@media (max-width: 900px) {
    .dashboard-layout {
        grid-template-columns: 1fr;
    }
}

.feed-section h2 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    color: #6b7280;
}

/* Premium Match Rows */
.match-card {
    background-color: #1f2937;
    border-radius: 8px;
    padding: 16px 24px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: background-color 0.2s;
}

.match-card:hover {
    background-color: #263347;
}

.team-box {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 38%;
    font-size: 1.05rem;
    font-weight: 500;
}

.team-box.away {
    justify-content: flex-end;
}

.team-logo {
    width: 26px;
    height: 26px;
    object-fit: contain;
}

.score-box {
    background-color: #111827;
    padding: 6px 18px;
    border-radius: 6px;
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    min-width: 80px;
    border: 1px solid #374151;
}

.time-badge {
    font-size: 0.78rem;
    color: #10b981;
    background-color: rgba(16, 185, 129, 0.1);
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
}

/* Sidebar Widgets Layout */
.sidebar-widget h3 {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: #6b7280;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.status-card {
    background-color: #1f2937;
    padding: 18px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.8;
    color: #9ca3af;
}

.status-card strong {
    color: #f3f4f6;
}

.loading-msg, .empty-msg {
    text-align: center;
    padding: 50px;
    color: #9ca3af;
    background-color: #1f2937;
    border-radius: 8px;
    border: 1px dashed #374151;
    font-size: 0.95rem;
}
