/* Team Page Styles */
main {
    padding: 0;
    display: flex;
    gap: 20px;
}

.container {
    width: 70%;
}
.sidebar-scheduler {
    width: 30%;
}
.team-title {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: center;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Team Detail Styles */
.team-detail {
    background: #295094;
    border-radius: 15px;
    margin-bottom: 30px;
    overflow: hidden;
}

.team-profile {
    padding: 20px;
}

.team-header {
    display: flex;
    align-items: center;
    gap: 30px;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.team-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px;
    box-shadow: 0 8px 20px 4px rgb(16 16 16 / 22%);
    transition: transform 0.3s ease;
}

.team-logo:hover {
    transform: scale(1.05);
}

.team-basic-info {
    flex:1;
}

.team-name {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    text-shadow: 0 2px 4px rgb(0 0 0 / 52%);
}

.team-meta {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 10px;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.meta-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.meta-label {
    font-weight: 600;
    color: #64748b;
    min-width: 100px;
}

.meta-value {
    font-weight: 500;
    color: #1e293b;
}

/* Team Content Styles */
.team-content {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

/* Tabs Styles */
.team-tabs {
    display: flex;
    background: linear-gradient(135deg, #1e293b, #334155);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.team-tabs::-webkit-scrollbar {
    display: none;
}

.tab-button {
    flex: 1;
    padding: 15px;
    background: transparent;
    border: none;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tab-button:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.tab-button.active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
}

.tab-button.active::after {
    transform: scaleX(1);
}

/* Tab Content Styles */
.team-tab-content {
    display: none;
    padding: 10px;
    animation: fadeIn 0.3s ease;
}

.team-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.team-tab-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.team-tab-content h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.team-tab-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 15px;
}

/* Matches Container */
.matches-container {
    display: grid;
    gap: 25px;
}

.league-section {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    padding: 15px;
    border: 1px solid rgba(226, 232, 240, 0.8);
}
.left {
    display: flex;
    gap: 5px;
    align-items: center;
    width: 50%;
    margin-bottom: 10px;
}
.league-section img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: contain;
}
.league-title {
    margin-bottom: 0 !important;
}

.matches-list {
    display: grid;
    gap: 12px;
}

.match-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

.match-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.match-teams {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 15px;
}

.team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.team.away {
    flex-direction: row-reverse;
    text-align: right;
}

.team img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 50%;
}

.team span {
    font-weight: 600;
    color: #374151;
    font-size: 14px;
}

.match-score {
    text-align: center;
    padding: 10px;
    background: linear-gradient(145deg, #f1f5f9, #e2e8f0);
    border-radius: 8px;
}

.score {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    display: block;
    margin-bottom: 5px;
}

.match-time {
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

/* Stats Tables */
.stats-table-container {
    overflow-x: auto;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.league-stats-table,
.cup-table,
.achievement-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 14px;
}

.league-stats-table th,
.cup-table th,
.achievement-table th {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #ffffff;
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.league-stats-table td,
.cup-table td,
.achievement-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
    font-weight: 500;
}

.league-stats-table tbody tr:hover,
.cup-table tbody tr:hover,
.achievement-table tbody tr:hover {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
}

.league-stats-table td:first-child,
.cup-table td:first-child,
.achievement-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    text-align: left;
    padding-left: 15px;
}

/* League Header Styles */
.league-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(59, 130, 246, 0.1);
}

.league-header .left {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 0;
}

.league-header .left img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: contain;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.league-header .league-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Stats Filter Styles */
.stats-filter {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.8);
    padding: 4px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.filter-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 20px;
    background: transparent;
    color: #64748b;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: translateY(-1px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6, #295094);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Matches Over Container */
.matches-over {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

/* Matches Table Styles */
.matches-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    font-size: 13px;
    margin:0;
}

.matches-table th {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #ffffff;
    padding:8px;
    text-align: center;
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #3b82f6;
}

.matches-table td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
    font-weight: 500;
    vertical-align: middle;
}

.matches-table tbody tr {
    transition: all 0.3s ease;
}

.matches-table tbody tr:hover {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    transform: scale(1.01);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.matches-table tbody tr:nth-child(even) {
    background: rgba(248, 250, 252, 0.5);
}

.matches-table .team {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-start;
    width:95px;
}

.matches-table .team img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.matches-table .team a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: color 0.3s ease;
}

.matches-table .team a:hover {
    color: #3b82f6;
    text-decoration: underline;
}

.matches-table .score {
    font-weight: 700;
    color: #1e293b;
    font-size: 14px;
    margin-bottom: 4px;
    width: 65px;
}

.matches-table .halftime {
    font-size: 10px;
    color: #64748b;
    font-weight: 500;
    font-style: italic;
}

/* Attack/Defense Stats Toggle */
.attack-stats {
    background: rgba(68, 239, 68, 0.1) !important;
    border-left: 1px solid #44ef44;
    color: #000 !important;
}

.defense-stats {
    background: rgba(239, 68, 68, 0.1) !important;
    border-left: 1px solid #ef4444;
    color: #000 !important;
}

/* Team Honors Styles */
.team-honors {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-honors h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.team-honors h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.honors-table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.honors-table th {
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #ffffff;
    padding: 15px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.honors-table td {
    padding: 12px;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
    font-weight: 500;
}

.honors-table tbody tr:hover {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
}

.honors-table td:first-child {
    font-weight: 600;
    color: #1e293b;
    text-align: left;
}

.season-list {
    text-align: left !important;
}

.season-item {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    color: #ffffff;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin: 2px;
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

/* Team Description Styles */
.team-description {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-description h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid rgba(59, 130, 246, 0.2);
    position: relative;
}

.team-description h3::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
}

.team-description .description {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.7;
    color: #374151;
    font-size: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3b82f6;
}

.team-description .description p {
    margin-bottom: 15px;
}

.team-description .description p:last-child {
    margin-bottom: 0;
}

/* Enhanced Responsive Design for New Elements */
@media (max-width: 768px) {
    main {
        flex-direction: column;
        gap: 20px;
        padding: 10px;
    }
    .container, .sidebar-scheduler {
        width: 100%;
    }
    .league-header {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .stats-filter {
        width: 100%;
        justify-content: center;
    }
    
    .filter-btn {
        flex: 1;
        padding: 10px 12px;
        font-size: 12px;
    }
    
    .matches-table {
        font-size: 11px;
    }
    
    .matches-table th {
        padding: 10px 4px;
        font-size: 9px;
    }
    
    .matches-table td {
        padding: 8px 4px;
    }
    
    .matches-table .team {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .matches-table .team img {
        width: 20px;
        height: 20px;
    }
    
    .matches-table .team a {
        font-size: 10px;
    }
    
    .attack-stats,
    .defense-stats {
        display: none;
    }
    
    .team-honors,
    .team-description {
        padding: 20px 15px;
        margin-top: 30px;
    }
    
    .honors-table th,
    .honors-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    
    .season-item {
        font-size: 9px;
        padding: 2px 6px;
    }
}

@media (max-width: 480px) {
    .league-header .left img {
        width: 28px;
        height: 28px;
    }
    
    .league-header .league-title {
        font-size: 16px;
    }
    
    .filter-btn {
        padding: 8px 10px;
        font-size: 11px;
    }
    
    .matches-table {
        font-size: 10px;
    }
    
    .matches-table th {
        padding: 8px 2px;
        font-size: 8px;
    }
    
    .matches-table td {
        padding: 6px 2px;
    }
    
    .team-honors h3,
    .team-description h3 {
        font-size: 20px;
    }
    
    .honors-table th,
    .honors-table td {
        padding: 6px 4px;
        font-size: 10px;
    }
}

/* Animation for Stats Filter Toggle */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.attack-stats,
.defense-stats {
    animation: slideIn 0.3s ease;
}

/* Hover Effects for Interactive Elements */
.honors-table tbody tr {
    transition: all 0.3s ease;
}

.honors-table tbody tr:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.team-description .description {
    transition: all 0.3s ease;
}

.team-description .description:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 10px;
    }
    
    .team-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .team-profile {
        padding: 20px;
    }
    
    .team-info {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .team-logo {
        width: 100px;
        height: 100px;
    }
    
    .team-name {
        font-size: 24px;
        margin-bottom: 15px;
    }
    .team-basic-info {width:100%}
    .team-meta {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .meta-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
    
    .meta-label {
        min-width: auto;
    }
    
    .team-tab-content {
        padding: 20px 15px;
    }
    
    .tab-button {
        min-width: 120px;
        padding: 12px 15px;
        font-size: 12px;
    }
    
    .match-teams {
        grid-template-columns: 1fr;
        gap: 10px;
        text-align: center;
    }
    
    .team.away {
        flex-direction: row;
        text-align: center;
    }
    
    .onlypc {
        display: none;
    }
    
    .league-stats-table,
    .cup-table,
    .achievement-table {
        font-size: 12px;
    }
    
    .league-stats-table th,
    .cup-table th,
    .achievement-table th {
        padding: 8px 4px;
        font-size: 10px;
    }
    
    .league-stats-table td,
    .cup-table td,
    .achievement-table td {
        padding: 6px 4px;
    }
}

@media (max-width: 480px) {
    .team-title {
        font-size: 20px;
    }
    
    .team-profile {
        padding: 15px;
    }
    
    .team-logo {
        width: 80px;
        height: 80px;
    }
    
    .team-name {
        font-size: 20px;
    }
    
    .team-tab-content {
        padding: 15px 10px;
    }
    
    .tab-button {
        min-width: 100px;
        padding: 10px 12px;
        font-size: 11px;
    }
    
    .league-stats-table,
    .cup-table,
    .achievement-table {
        font-size: 10px;
    }
    
    .league-stats-table th,
    .cup-table th,
    .achievement-table th {
        padding: 6px 2px;
        font-size: 9px;
    }
    
    .league-stats-table td,
    .cup-table td,
    .achievement-table td {
        padding: 4px 2px;
    }
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.loading {
    animation: pulse 1.5s ease-in-out infinite;
}

/* Highlight Effects */
.highlight {
    background: linear-gradient(135deg, #fef3c7, #fde68a) !important;
    font-weight: 700 !important;
    color: #92400e !important;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Focus States */
.tab-button:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .team-tabs {
        display: none;
    }
    
    .team-tab-content {
        display: block !important;
    }
    
    .main-content {
        background: white;
    }
    
    .team-detail,
    .team-content {
        box-shadow: none;
        border: 1px solid #ccc;
    }
}
.updating-notice {
    color: #666;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 4px;
    border: 1px dashed #ddd;
}

/* Lich thi dau styles */
.lich-thi-dau-container {
}

.schedule-table-wrapper {
    overflow-x: auto;
    margin-top: 15px;
}

.schedule-table th {
    background: #f8f9fa;
    padding: 8px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
}

.schedule-table td {
    padding: 8px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
    border-radius: 0;
}

.schedule-match-row:hover {
    background: #f8f9fa;
}
#schedule .league-title {
    width: 66px;
    display: block;
}
#schedule .team-info {
    display: flex;
    align-items: center;
    gap: 8px;
    width:100px;
}
#schedule .team-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
    padding: 0;
    box-shadow: none;
    border: 2px solid;
}
#schedule .team-name {
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    color: #000;
    text-shadow: none;
}
#schedule .datetime-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#schedule .match-date {
    font-size: 13px;
    color: #6c757d;
}

#schedule .match-time {
    font-weight: 600;
    color: #495057;
}

#schedule .score-display {
    font-weight: 700;
    font-size: 16px;
    color: #28a745;
}

#schedule .form-box {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 12px;
    text-align: center;
    min-width: 20px;
}

#schedule .form-box.win {
    background: #28a745;
    color: white;
}

#schedule .form-box.lose {
    background: #dc3545;
    color: white;
}

#schedule .form-box.draw {
    background: #ffc107;
    color: #212529;
}

#schedule .result-pending {
    color: #6c757d;
    font-style: italic;
}

#schedule .detail-link {
    background: #007bff;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 13px;
}

#schedule .detail-link:hover {
    background: #0056b3;
    color: white;
}

/* Doi hinh styles */
.doi-hinh-container {

}

.lineup-table-wrapper {
    overflow-x: auto;
}

.lineup-table, .schedule-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
    border-radius: 10px;
    overflow: hidden;
}

.lineup-table th {
    background: #f8f9fa;
    padding: 10px 6px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
    color: #495057;
    font-size: 13px;
}

.lineup-table td {
    padding: 10px 6px;
    border-bottom: 1px solid #dee2e6;
    vertical-align: middle;
}

#lineup .player-row:hover {
    background: #f8f9fa;
}

#lineup.player-number {
    font-weight: 700;
    color: #007bff;
    text-align: center;
    width: 50px;
}

#lineup .player-name .name-text {
    font-weight: 600;
    color: #495057;
}

#lineup .position-badge {
    background: #e9ecef;
    padding: 2px 6px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: #495057;
}

.lineup-summary {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 6px;
}

#lineup .summary-stats {
    display: flex;
    gap: 20px;
}

#lineup .stat-item {
    display: flex;
    gap: 8px;
}

#lineup .stat-label {
    color: #6c757d;
}

#lineup .stat-value {
    font-weight: 600;
    color: #495057;
}

/* No data message styles */
.no-data-message {
    text-align: center;
    padding: 40px 20px;
    color: #6c757d;
}

.no-data-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.no-data-message h4 {
    margin: 10px 0;
    color: #495057;
}

.no-data-message p {
    margin: 0;
    font-size: 14px;
}

/* Responsive design */
@media (max-width: 768px) {
    .schedule-table th,
    .schedule-table td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .lineup-table th,
    .lineup-table td {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .team-info {
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 10px;
    }
}