.app-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.nav-tabs .nav-link {
    border: none;
    background: none;
    color: #6c757d;
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-radius: 0;
    border-bottom: 3px solid transparent;
}
.nav-tabs .nav-link.active {
    background: none;
    color: #667eea;
    border-bottom-color: #667eea;
}
.nav-tabs .nav-link:hover {
    border-bottom-color: #667eea;
    color: #667eea;
}
.team-badge {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0.125rem;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 20px;
    font-size: 0.875rem;
}
.team-logo {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(45deg, #667eea, #764ba2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.7rem;
    margin-right: 0.5rem;
}
.match-card {
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}
.match-card.live {
    animation: pulse 2s infinite;
}
.match-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 126, 20, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(253, 126, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 126, 20, 0); }
}
.score-input {
    width: 60px;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}
.vs-separator {
    font-size: 1.5rem;
    font-weight: bold;
    color: #6c757d;
    margin: 0 1rem;
}
.btn-custom {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    color: white;
    transition: all 0.3s ease;
}
.btn-custom:hover {
    background: linear-gradient(45deg, #5a6fd8, #6a4190);
    color: white;
    transform: translateY(-2px);
}
.status-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    text-transform: uppercase;
    font-weight: 600;
}
.status-scheduled { background: #cff4fc; color: #055160; }
.status-live { background: #ffe5cc; color: #cc2d00; }
.status-completed { background: #d1e7dd; color: #0f5132; }
.status-postponed { background: #fff3cd; color: #664d03; }
.status-cancelled { background: #f8d7da; color: #842029; }
.status-scored { background: #e2d9f3; color: #432874; }
.match-score {
    font-size: 1.5rem;
    font-weight: bold;
    color: #198754;
}
.stats-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.2s ease;
}
.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}
.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.quick-score-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
}
.quick-score-btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 15px;
}
.match-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 0.75rem;
    margin-top: 0.5rem;
}
.form-floating > label {
    color: #6c757d;
}
.table-responsive {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.filter-controls {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 1.5rem;
}
.schedule-date-group {
    background: white;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.date-group-header {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    color: inherit;
    text-align: left;
    background: transparent;
    border: 0;
    cursor: pointer;
    user-select: none;
}
.date-group-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #495057;
}
.date-group-header .toggle-icon {
    display: inline-block;
    width: 1em;
}
.card-body {
    border-style:solid;
    border-width: 0;
}
