.boxingodd-wrapper {
  font-family: 'Prompt', sans-serif;
  color: #fff;
}

.boxingodd-group {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 0 5px rgba(255,255,255,0.15);
}

.boxingodd-group-header {
  background: linear-gradient(90deg, #6a1b9a, #4a148c);
  padding: 8px 12px;
  font-weight: 600;
  font-size: 15px;
  text-align: left;
}

.boxingodd-row {
  display: grid;
  grid-template-columns: 70px 1fr 1fr;
  align-items: center;
  padding: 6px 10px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: #1c1c1c;
}
.boxingodd-row:nth-child(even) { background: #222; }

.boxingodd-row.is-live {
  background: #301934;
  border-left: 4px solid #ff1744;
}

.boxingodd-time {
  text-align: center;
  color: #ccc;
  font-size: 13px;
}

.boxingodd-red, .boxingodd-blue {
  display: flex;
  flex-direction: column;
  padding: 4px 8px;
  font-size: 14px;
}

.boxingodd-red { color: #f44336; }
.boxingodd-blue { color: #2196f3; }

.boxingodd-red .price, .boxingodd-blue .price {
  font-size: 13px;
  color: #ddd;
}

.boxingodd-red .s, .boxingodd-blue .s {
  color: #ff5252;
  font-weight: bold;
}

.boxingodd-red .m, .boxingodd-blue .m {
  color: #82b1ff;
  font-weight: bold;
}


/* ========================================
   Boxing Odd Widget - Modern Table Styles
   ======================================== */

/* Container */
.boxingodd-table-wrap {
    max-width: 100%;
    overflow-x: auto;
    
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.boxingodd-empty {
    padding: 40px;
    text-align: center;
    color: #999;
    font-size: 16px;
}

.category-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 16px 20px;
    font-weight: bold;
    font-size: 18px;
    margin-top: 16px;
    border-radius: 8px 8px 0 0;
}

.category-header:first-child {
    margin-top: 0;
}

.table-header {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 80px 80px 80px 80px;
    gap: 8px;
    padding: 12px 16px;
    background: #f8f9fa;
    font-weight: bold;
    color: #495057;
    border-bottom: 2px solid #dee2e6;
}

.table-row {
    display: grid;
    grid-template-columns: 140px 1fr 1fr 80px 80px 80px 80px;
    gap: 8px;
    padding: 16px;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s;
}

.table-row:hover {
    background: #f8f9fa;
}

.col-datetime {
    font-size: 14px;
    color: #6c757d;
    display: flex;
    align-items: center;
}

.col-fighter {
    font-weight: 600;
    font-size: 15px;
    display: flex;
    align-items: center;
    padding: 0 8px;
}

.red-fighter {
    color: #dc3545;
    background: #ffe5e8;
    border-radius: 4px;
}

.blue-fighter {
    color: #0056b3;
    background: #e7f3ff;
    border-radius: 4px;
}

.col-odds {
    font-weight: bold;
    font-size: 16px;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-only {
    display: none;
}

.desktop-only {
    display: grid;
}

.category-group
 {
    margin-bottom: 10px;
    background-color: #ffffff;
    border-radius: 10px;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: block;
    }
    
    .boxingodd-table-wrap {
        box-shadow: none;
        border-radius: 0;
    }
    
    .category-header {
       
        border-radius: 0;
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .mobile-fight-card {
        padding: 7px;
        
        background: #fff;
    }
    
    .mobile-fight-wrapper {
        display: flex;
        gap: 12px;
    }
    
    .mobile-datetime-col {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        min-width: 70px;
        padding: 8px;
        background: #f8f9fa;
        border-radius: 6px;
        gap: 4px;
    }
    
    .mobile-date {
        font-size: 12px;
        font-weight: 600;
        color: #495057;
        text-align: center;
        line-height: 1.2;
    }
    
    .mobile-time {
        font-size: 16px;
        font-weight: bold;
        color: #212529;
        text-align: center;
    }
    
    .mobile-content-col {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
    }
    
    .mobile-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 12px;
        border-radius: 6px;
    }
    
    .red-row {
        background: linear-gradient(90deg, #ffe5e8 0%, #fff5f6 100%);
        border-left: 4px solid #dc3545;
    }
    
    .blue-row {
        background: linear-gradient(90deg, #e7f3ff 0%, #f0f8ff 100%);
        border-left: 4px solid #0056b3;
    }
    
    .mobile-fighter {
        font-weight: 600;
        font-size: 15px;
        flex: 1;
    }
    
    .red-row .mobile-fighter {
        color: #dc3545;
    }
    
    .blue-row .mobile-fighter {
        color: #0056b3;
    }
    
    .mobile-odds {
        display: flex;
        gap: 12px;
        font-weight: bold;
        font-size: 15px;
        color: #28a745;
    }
    
    .odds-item {
        display: inline-block;
    }
    
    .odds-label {
        color: #6c757d;
        font-weight: normal;
        font-size: 12px;
        margin-right: 2px;
    }
    
    .mobile-fight-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 480px) {
    .mobile-datetime-col {
        min-width: 60px;
    }
    
    .mobile-date {
        font-size: 11px;
    }
    
    .mobile-time {
        font-size: 14px;
    }
    
    .mobile-odds {
        gap: 8px;
        font-size: 14px;
    }
    
    .mobile-fighter {
        font-size: 14px;
    }
}