/* Base Styles */
body {
    font-family: 'Roboto', sans-serif; 
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark Mode Background */
    color: #e0e0e0; 
}

a {
    color: #4CAF50; /* အစိမ်းရောင် Link များ */
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: #66BB6A;
}

/* Header */
.live-header {
    background: #1e1e1e; 
    color: white;
    padding: 25px 0;
    text-align: center;
    border-bottom: 3px solid #4CAF50; 
}

.live-header h1 {
    margin: 0;
    font-size: 2.2em;
    font-weight: 700;
}

.live-header p {
    margin-top: 5px;
    font-size: 1em;
    color: #a0a0a0;
}

/* Dashboard Layout (Grid) - Full Width ပြင်ဆင်ချက် */
.sports-dashboard {
    display: grid;
    grid-template-columns: 70% 30%; /* Main Content 70%, Sidebar 30% */
    gap: 30px;
    padding: 20px;
    max-width: 100%; /* မျက်နှာပြင် အပြည့်ယူရန် */
    margin: 0 auto;
}

.main-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.video-section, .table-section, .sidebar {
    background: #1e1e1e; 
    padding: 20px;
    border-radius: 12px; 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4); 
}

.section-title {
    color: #e0e0e0;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 1.4em;
    font-weight: 500;
}

/* Video Player */
.video-player-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
}

.video-player-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Countdown Timer */
.countdown-timer {
    text-align: center;
    background: #383838; 
    color: #4CAF50; 
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.timer-display {
    font-size: 2.5em;
    font-weight: bold;
    letter-spacing: 2px;
}

/* Table */
table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95em;
}

th, td {
    padding: 12px 10px;
    border-bottom: 1px solid #333; 
}

thead {
    background-color: #383838;
    color: white;
}

tbody tr:nth-child(even) {
    background-color: #252525; 
}
tbody tr:hover {
    background-color: #333;
}

/* Sidebar (Upcoming Matches အတွက် CSS) */
.news-list {
    /* news-list ကို upcoming matches အတွက် ပြန်သုံးသည် */
    padding-left: 0;
    margin: 0;
}

/* Footer */
.live-footer {
    background: #1e1e1e;
    color: #a0a0a0;
    text-align: center;
    padding: 20px 0;
}

/* Mobile Responsiveness */
@media (max-width: 800px) {
    .sports-dashboard {
        grid-template-columns: 1fr; 
        gap: 20px;
        padding: 10px;
    }
}
