.play-cricket-league-table {
    width: 100%;
    border-collapse: collapse;
    background: #2c3e50;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Header */
.play-cricket-league-table thead tr {
    background: linear-gradient(135deg, #1e2b3a 0%, #2c3e50 100%);
}

.play-cricket-league-table thead th {
    color: #ffffff; 
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 18px 12px;
    text-align: center;
}

/* Left-align team names */
.play-cricket-league-table th:nth-child(2),
.play-cricket-league-table td:nth-child(2) {
    text-align: left !important;
    padding-left: 20px;
}

/* Body rows */
.play-cricket-league-table tbody tr {
    border-bottom: 1px solid #eef2f6;
    transition: background-color 0.2s ease;
}

.play-cricket-league-table tbody td {
    padding: 14px 12px;
    text-align: center;
    color: #ffffff;
    font-size: 15px;
}

/* Zebra striping */
.play-cricket-league-table tbody tr:nth-child(even) {
    background-color: #2c3e50;
}

/* Hover effect - text stays visible */
.play-cricket-league-table tbody tr:hover {
    background-color: #f0f5fa;
}

.play-cricket-league-table tbody tr:hover td {
    color: #2c3e50; 
}

/* Bottom explanation text - padding and color */
.play-cricket-league-table em {
    display: block;
    padding: 16px 20px !important;
    font-size: 14px;
    color: #e0e0e0;
    background: #1e2b3a;
    margin-top: 0;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
    font-style: normal;
}

/* Dark mode support for the explanation text */
.ast-dark-mode .play-cricket-league-table em {
    background: #1e2a36;
    color: #ccc;
    border-top: 1px solid #334155;
}

/* Responsive */
@media (max-width: 768px) {
    .play-cricket-league-table {
        font-size: 13px;
    }
    .play-cricket-league-table th,
    .play-cricket-league-table td {
        padding: 10px 6px;
    }
    
    /* Mobile padding for explanation text */
    .play-cricket-league-table em {
        padding: 12px 16px !important;
        font-size: 13px;
    }
}