| Rank | Team | M | W | L | PTS | NRR | Last 5 |
|---|---|---|---|---|---|---|---|
| 1 | Biratnagar Kings | 3 | 3 | 0 | 6 | +1.954 | W W W |
| 2 | Sudurpaschim Royals | 3 | 2 | 1 | 4 | +0.650 | W W L |
| 3 | Lumbini Lions | 2 | 1 | 1 | 2 | +0.024 | W L |
| 4 | Chitwan Rhinos | 3 | 1 | 2 | 2 | -0.112 | L W L |
| 5 | Kathmandu Gorkhas | 4 | 1 | 3 | 2 | -0.456 | L W L L |
| 6 | Karnali Yaks | 3 | 1 | 2 | 2 | -0.924 | L L W |
| 7 | Janakpur Bolts | 3 | 0 | 3 | 0 | -1.135 | L L L |
| 8 | Pokhara Avengers | 3 | 0 | 3 | 0 | -1.775 | L L L |
المشاركات
Npl table , fixtures
/* Custom CSS for NPL Points Table */
.npl-table-container {
overflow-x: auto;
margin: 15px 0;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.npl-table {
width: 100%;
border-collapse: collapse;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
min-width: 600px; /* Ensure table doesn't get too narrow on mobile */
}
/* Header Styling */
.npl-table thead th {
background-color: #3f51b5; /* Deep Blue Header */
color: white;
padding: 12px 10px;
text-align: center;
font-weight: 600;
letter-spacing: 0.5px;
}
/* Row Styling */
.npl-table tbody tr {
border-bottom: 1px solid #eee;
transition: background-color 0.3s ease;
}
.npl-table tbody tr:hover {
background-color: #f5f5f5;
}
/* Cell Styling */
.npl-table tbody td {
padding: 10px 10px;
text-align: center;
vertical-align: middle;
}
/* Team Name Styling - Aligned Left, Bold */
.npl-table tbody td:nth-child(2) {
text-align: left;
font-weight: bold;
color: #212121;
}
/* Highlighted Ranks (Top 4 for Playoff Spot) */
.npl-table tbody tr:nth-child(1),
.npl-table tbody tr:nth-child(2),
.npl-table tbody tr:nth-child(3),
.npl-table tbody tr:nth-child(4) {
background-color: #e8eaf6; /* Light highlight for top teams */
}
.npl-table tbody tr:nth-child(1) {
border-left: 5px solid #4caf50; /* Green stripe for Rank 1 */
}
/* Last 5 Form Styling */
.npl-table .form-w { color: #4CAF50; font-weight: bold; }
.npl-table .form-l { color: #F44336; font-weight: bold; }
.npl-table .form-d { color: #FFC107; font-weight: bold; }
