/*
Theme Name: SmartMag Child
Theme URI: https://smartmag.theme-sphere.com/
Description: A child theme of SmartMag
Author: ThemeSphere
Author URI: https://theme-sphere.com
Template: smart-mag
Version: 1.1
*/

.match-schedule-container {
            max-width: 1200px;
            margin: 0 auto;
            
        }
        .match-card {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .match-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        .match-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .league-name {
            color: #00d4ff;
            font-weight: bold;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .match-datetime {
            color: #aaa;
            font-size: 13px;
        }
        .match-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
        }.match-schedule-container
        .team {
            flex: 1;
            text-align : center;
            gap: 15px;
             
        }
        .team-left {
            justify-content: flex-start;
        }
        .team-right {
            justify-content: flex-end;
            flex-direction: row-reverse;
        }
        .team-logo {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
        }
        .team-name {
            color: #fff;
            font-size: 20px;
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }
        .match-score {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            min-width: 150px;
        }
        .score {
            color: #fff;
            font-size: 36px;
            font-weight: bold;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            letter-spacing: 2px;
        }
        .match-status {
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .match-status.completed {
            background-color: #28a745;
            color: #fff;
        }
        .match-status.inprogress {
            background-color: #ffc107;
            color: #000;
            animation: pulse 2s infinite;
        }
        .match-status.unstarted {
            background-color: #6c757d;
            color: #fff;
        }
        .load-more-button {
            color: #fff;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 20px;
            display: block;
            text-align: center;
            margin: 20px auto;
        }
        .load-more-button:hover {
            background-color: #0056b3;
        }