@import url('https://fonts.googleapis.com/css2?family=Asap:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --dark-surface: #1E1E1E;
    --text-primary: #E0E0E0;
    --text-secondary: #9E9E9E;
    --accent-color: #3B82F6;
    --accent-red: #EF4444;
    --dark-background: #1a1a1a;
    --dark-element: #2c2c2c;
    --text-color: #f0f0f0;
    --left-color: #ff8c00;
    --right-color: #6c757d;
}
/* General Body and Layout */
body {
    font-family: "Asap", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f1f1f1;
    color: #555555;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    /* This fixes the horizontal scrollbar issue */
}
.live-match-indicator{
    border-left: 8px solid #ef4444 !important;
}
.ended-match-indicator{
    border-left: 8px solid #4b4b4b !important;
}
.logintopost{
        position: fixed;
    background: #00000047;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.a3de{
        box-shadow: 0px 3px 0px #737373;
}

.sm12{
    background: white;
    padding: 6px;
    border-radius: 8px;
    margin-top: 5px;
    color: #313131;
    margin-bottom: 5px;
}
.dek4{
    gap: 10px;
    justify-content: center;
    display: none;
    background: #f1f1f1;
}

.profile-avatar{
    width: 25px;
    height: 25px;
    display: flex;
    line-height: 1;
     border-radius: 12.5px;
}
.profile {
      display: inline-flex;           /* sits nicely inline with text if needed */
      align-items: center;            /* vertically center image + text */
      gap: 3px;                      /* space between image and name */
      font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      align-self: center;
    }
    .avatarU {
    width: 25px;
    height: 25px;
    border-radius: 12.5px;            /* makes it round */
    object-fit: cover;              /* crops image to fill the circle */
     display: flex;
    line-height: 1;
    }
    .nameU {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.2;
      color: #111;
      /*margin-left: -9px;*/
    }

.mpar {
    color: #898989;
}

.container {
    max-width: 900px;
    /* max-width: 768px; */
    margin: 0 auto;
    /*padding: 0 4px;*/
     width: 100%; 
}

.matchpnav {
    /* max-width: 1200px; */
    max-width: 768px;
    margin: 0 auto;
    padding: 0 4px;
    width: 100%;
}

/* Header and Navigation */
header {
    background-color: #242424;
    padding: 1rem 0 0px;
    border-bottom: 2px solid #dbdbdb;
    position: relative;
}
main{
    margin-bottom: 107px !important;
}
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-nav-icons {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.mobile-nav-icons .icon-btn {
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    /*padding: 0;*/
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.mobile-nav-icons .icon-btn svg {
    width: 24px;
    height: 24px;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: #4CAF50;
    text-decoration: none;
}

.logo img {
    width: 40px;
    margin-right: 0.5rem;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #4CAF50;
}
.loginht:hover{
    color: white !important;
}
.secondary-nav {
    background-color: #ffffff;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.logintochat{
    position: fixed;
    background: #000000a6;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 1;
     display: flex;
    align-items: center;
    justify-content: center;
}
a {
    text-decoration: none;
    color: inherit;
}

.secondary-nav a {
    color: #616161;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem .2rem;
    /* border-radius: 5px; */
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.secondary-nav a:hover,
.secondary-nav a.active {
    background-color: #4CAF50;
    color: #1a1a1a;
}

/* Mobile Menu Styling */
.mobile-menu {
    position: fixed;
    top: 0;
    /* Adjusted as requested */
    left: 0;
    width: 100%;
    background-color: #242424;
    display: none;
    /* Hidden by default */
    z-index: 1000;
    padding: 1.5rem 1rem;
    box-sizing: border-box;
    border-bottom: 2px solid #333;
    height: auto;
    /* Reverted to auto so it's not full-screen */
}

.mobile-menu.active {
    display: block;
    /* Show the menu */
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #333;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.mobile-menu-header .icon-btn {
    font-size: 1.5rem;
    background: none;
    border: none;
    color: #e0e0e0;
    cursor: pointer;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #333;
}

.mobile-menu-list a {
    display: flex;
    /* Use flexbox to align content and icon */
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.mobile-menu-list a:hover {
    color: #4CAF50;
}

.mobile-menu-list a svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.mobile-menu-list a:hover svg {
    transform: translateX(5px);
}

/* Main Content */
.title-section {
    margin-bottom: 2rem;
}

.title-section h1 {
    font-size: 2.5rem;
    color: #797979;
    margin: 0 0 0.5rem 0;
}

.title-section p {
    font-size: 1rem;
    color: #797979;
    margin: 0;
}

/* Matches Section */
.matches-section {
    /* background-color: #242424; */
    /*padding: 5px;*/
    border-radius: 10px;
    margin-bottom: 2rem;
}

.matches-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid gainsboro;
    background: white;
    padding: 4px;
}

.matches-tabs button {
    background: none;
    border: none;
    color: #4D4D4D;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease, color 0.3s ease;
}

.matches-tabs button.active {
    color: #4CAF50;
    border-bottom: 2px solid #4CAF50;
}

.active {
    color: #4CAF50;
}

.aldk34da a {
    background: white;
}

.aldk34da {
    margin-top: 20px;
}
        .akda3{
            color: #ffffffbf
        }
.match-list h3 {
    color: #a0a0a0;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.match-list a {
    background: white;
}

.match-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 8px;
    margin-bottom: 1rem;
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    flex-wrap: wrap;
    padding: 10px 0;
    color: #5f5757;
    text-align: center;
    gap: .5rem;
}

.match-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.time{
    font-size: 20px !important;
    font-weight: 700;
}
.team {
    display: flex;
}

.match-card .team-infoA {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.match-card .team-infoB {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.team-infoB .team-name {
    margin-left: 2px;
}

.team-infoA .team-name {
    margin-right: 2px;
}

.match-card .match-center {
    flex: .4;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.match-card .match-center .time-wrapper {
    margin-bottom: 0.5rem;
}

.team-info img {
    width: 30px;
    height: 30px;
    margin-bottom: 0.5rem;
    /* border-radius: 50%; */
}

/* Styles for the circular progress bars */
.circular-progress-container {
    width: 60px;
    height: 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circular-progress-container svg {
    width: 70%;
    height: 70%;
    transform: rotate(-90deg);
}

.circular-progress-container .circle-bg,
.circular-progress-container .circle-progress {
    fill: none;
    stroke-width: 5;
    transition: stroke-dashoffset 0.5s ease-in-out;
}

.circular-progress-container .circle-bg {
    stroke: #33333317;
}

.circular-progress-container .circle-progress.win {
    stroke: #4CAF50;
}

.circular-progress-container .circle-progress.draw {
    stroke: #4CAF50;
}

.circular-progress-container .percentage-text {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    /* color: #e0e0e0; */
}

/* Articles Section */
.articles-section {
    margin-bottom: 2rem;
    padding: 5px;
}

.articles-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.article-card {
    display: flex;
    background-color: #242424;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.article-card img {
    width: 250px;
    height: 150px;
    object-fit: cover;
}

.article-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.article-content h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.article-content p {
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    color: #a0a0a0;
}

.article-content a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-content a:hover {
    color: #388E3C;
}

/* Footer */
footer {
    background-color: #242424;
    text-align: center;
    padding: 1.5rem 0;
}

footer a {
    color: #E6E6E6;
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 0.5rem;
}







/* HERE */

/* Header */
header {
    background-color: #2c2c2c;
    /* Updated header background */
    padding: 1rem 0px 0px;
    border-bottom: 2px solid #444;
    /* Updated border color */
    color: #e0e0e0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    /* color: #4CAF50; */
    color: white;
    text-decoration: none;
}

.logo img {
    width: 30px;
    margin-right: 0.5rem;
}

/* Main Match Info Section */
.match-info-section {
    background-color: #242424;
    /* White background as in the image */
    /*padding: 1.5rem 1rem;*/
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.match-details {
    display: flex;
    justify-content: center;
    align-items: center;
    /* margin-bottom: 1.5rem; */
    /* column-gap: 4%; */
}

.match-team-pp {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 30%;
}

.match-team-pp img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}


.team-name {
    background-color: #7ea3cc !important;
    color: #fff;
    flex-basis: 100%;
    text-align: center;
    /* padding: 3px; */
}

.team-name-h {
    background-color: unset;
    padding: 3px;
    font-weight: 600;
    color: #1c1c1c;
}

.team-name-standing {
    text-align: left;
}

.match-details .vs {
    background: gainsboro;
    padding: 5px;
    border-radius: 8px;
    font-size: 13px;
    color: #434343;
}

.match-prediction {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 10%;
}

.prediction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.prediction-item span {
    font-size: 0.8rem;
    color: #a3a3a3;
}

/* Circular Progress Bar */
.circular-progress-container {
    position: relative;
    width: 80px;
    height: 80px;
}

.circular-progress-container svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.circular-progress-container .circle-bg,
.circular-progress-container .circle-progress {
    fill: none;
    stroke-width: 8;
}

.circular-progress-container .circle-bg {
    stroke: #ddd;
}

.circular-progress-container .circle-progress {
    transition: stroke-dashoffset 0.5s ease-in-out;
}

.circular-progress-container .circle-progress.win {
    stroke: #4CAF50;
}

.circular-progress-container .circle-progress.draw {
    stroke: #888;
}

/* Changed draw color */

.circular-progress-container .percentage-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 700;
    color: #0d0d0d;
}

.circular-progress-container>.percentage-text {
    color: #a3a3a3;
}

/* Stat Blocks */
.stats-section {
    background-color: #f0f0f0;
    /* Light gray background for the main content area */
    margin-bottom: 1rem;
}

.stats-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #0d0d0d;
    border-bottom: 2px solid #4CAF50;
    display: inline-block;
    padding-bottom: 0.25rem;
    margin-bottom: 1rem;
}

.stats-block {
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    /* Added subtle shadow */
}

.stats-block-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #0d0d0d;
}

/* Bar Chart Style */
.bar-chart-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.bar-label {
    font-size: 0.8rem;
    color: #555;
    width: 15%;
    text-align: right;
    white-space: nowrap;
}

.bar-label.left {
    text-align: left;
}

.bar-label.center {
    width: 25%;
    text-align: center;
}

.bar-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    height: 12px;
    border-radius: 6px;
    background-color: #ddd;
    /* Updated bar background */
}

.bar-fill {
    height: 100%;
    border-radius: 6px;
    transition: width 0.5s ease-in-out;
}

.bar-fill.green {
    background-color: #4CAF50;
}

.bar-fill.red {
    background-color: #F44336;
}

/* Brighter red */
.bar-fill.blue {
    background-color: #3f72af;
}

.bar-fill.purple {
    background-color: #8e44ad;
}

.bar-fill.gray {
    background-color: #888;
}

.bar-value {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0d0d0d;
    width: 10%;
    text-align: left;
}

/* Table-like stats */
.table-stats-container {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.8rem;
}

.table-stats-container th,
.table-stats-container td {
    padding: 0.5rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.table-stats-container th {
    font-weight: 600;
    color: #4CAF50;
    background-color: #e0e0e0;
}

.table-stats-container td {
    color: #333;
}

.table-stats-container td.left {
    text-align: left;
}

.table-stats-container td.right {
    text-align: right;
}

.team-label {
    color: #4CAF50;
    font-weight: 600;
}

.stat-label {
    font-weight: 600;
    color: #0d0d0d;
}

/* Footer */
footer {
      background-color: #2c2c2c;
    padding: 1.5rem 1rem;
    text-align: center;
    border-top: 2px solid #444;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

footer a {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    margin: 0 0.5rem;
}

.teamdiv {
    display: flex;
    height: 100px;
    width: 100px;
    border: solid 1px #7ea3cc;
    border-radius: 5px;
    margin: 5px;
    align-items: flex-end;
    justify-content: center;
    background-color: #fff !important;
}

.match-section {
    background: #242424;
}

.table {
    width: 100%;
    max-width: 55%;
    margin: 0 auto;
}

.table tr {
    text-align: left;
}

.table tr td {
    border-bottom: 1px solid gainsboro;
}

/* Styles for each stats row */
.stat-row {
    display: flex;
    align-items: center;
    /* background-color: #f0f0f0; */
    /* Changed to a light gray */
    padding: .2rem;
    border-top: 1px solid #ccc;
    /* Changed border color */
    position: relative;
}

.stat-label {
    width: 30%;
    flex-shrink: 0;
    font-weight: 600;
}

/* Styles for the progress bar */
.progress-bar-container {
    flex-grow: 1;
    height: 25px;
    background-color: transparent;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.progress-bar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transition: width 0.5s ease-in-out;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 1rem;
    box-sizing: border-box;
}

.progress-bar span {
    font-weight: bold;
    color: #1a1a1a;
    /* Changed to dark text for contrast */
}

/* Color classes for different percentage bars */
.bar-light-green {
    background-color: #a5d6a7;
    /* Adjusted green for contrast */
}

.bar-dark-green {
    background-color: #66bb6a;
    /* Adjusted green for contrast */
}

.bar-red {
    background-color: #ef9a9a;
    /* Adjusted red for contrast */
}

.stmenu {
    display: flex;
    column-gap: 20px;
}

.stmenu-section {
    height: 60px;
    background: white;
    display: flex;
    align-items: center;
}

.stat-menu-active {
    background: #E4ECF5;
    padding: 0px 14px;
    color: #4CAF50;
    font-weight: bold;
}

.statmi {
    height: 60px;
    display: flex;
    align-items: center;
}

.clickable:hover {
    cursor: pointer;
}

.title {
    background: white;
    height: 55px;
    display: flex;
    align-items: center;
    padding: 0px 7px;
    box-shadow: 0px 4px 14px -11px;
    margin-bottom: 9px;
    font-weight: bold;
    font-size: 19px;
}

        .hidden {
            display: none !important;
        }

        .view-more {
            text-align: center;
            padding-top: 20px;
        }

        .view-more button {
            background-color: #007BFF;
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .view-more button:hover {
            background-color: #0056b3;
        }

/* Styles for a single match row */
.match-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.match-row:last-of-type {
    border-bottom: none;
}

.date {
    font-size: 0.8rem;
    color: #555;
    width: 15%;
    flex-shrink: 0;
    text-align: center;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 35%;
    justify-content: flex-end;
}

.team-info.left {
    width: 35%;
    justify-content: flex-start;
}

.team-logo {
    width: 30px;
    height: 30px;
}

.score-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 20%;
    flex-shrink: 0;
    text-align: center;
}

.score {
    font-size: 1.5rem;
    font-weight: bold;
}

.outcome {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Outcome color styles */
.outcome.draw {
    background-color: #ffeb3b;
    color: #333;
}

.outcome.win {
    background-color: #81c784;
    color: #1a1a1a;
}

.mtop {
    margin-top: 40px;
}

.dfbg {
    background-color: white;
}

/* Show more button */
.show-more-btn {
    display: block;
    width: 100%;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
    color: #1a1a1a;
    text-decoration: none;
    cursor: pointer;
    border-top: 1px solid #e0e0e0;
    margin-top: 1rem;
}

.team-result-row {
    display: flex;
    flex-direction: column;
    padding: .3rem 10px;
}

.team-display-name {
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.team-performance-stats {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-crest {
    width: 40px;
    height: 40px;
}

/* Styles for the progress bar */
.score-progress-container {
    flex-grow: 1;
    height: 20px;
    background-color: #e0e0e0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.score-progress-bar {
    height: 100%;
    transition: width 0.5s ease-in-out;
}

.bar-success {
    background-color: #81c784;
}

.bar-failure {
    background-color: #ff8a80;
}

/* Styles for the percentage text */
.score-percentage-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 120px;
    align-items: center;
}

.score-percentage {
    font-size: 1.5rem;
    font-weight: bold;
}

.score-subtitle {
    font-size: 0.75rem;
    color: #555;
}

/* Styles for the tabbed menu at the top */
.stats-tabs {
    display: flex;
    background-color: #e0e0e0;
    font-weight: bold;
}

.stats-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.stats-tab:last-child {
    border-right: none;
}

.stats-tab.active {
    background-color: #ffffff;
    color: #4CAF50;
}


/* Styles for the tabbed menu at the top */
.stats-tabs {
    display: flex;
    background-color: #e0e0e0;
    font-weight: bold;
}

.stats-tab {
    flex: 1;
    padding: 1rem;
    text-align: center;
    border-right: 1px solid #d0d0d0;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.stats-tab:last-child {
    border-right: none;
}

.stats-tab.active {
    background-color: #ffffff;
    color: #4CAF50;
}

/* Styles for the table structure using Flexbox */
.stats-table-flex {
    display: flex;
    flex-direction: column;
    padding: 10px;
}

/* This creates the separation between columns in the rows */
.table-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-cell:first-child:not(.mgoal) {
    border-bottom: 1px solid gainsboro;
}

.table-header-row {
    background-color: #f0f0f0;
    font-weight: bold;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 10px;
    /* Adds space below the header */
    padding-right: 10px;
    /* Accounts for the gap */
    padding-left: 10px;
}

.table-cell {
    padding: .2rem;
    text-align: center;
    flex: 1;
    background-color: #ffffff;
}

.table-cell:first-child {
    text-align: left;
    font-weight: bold;
    color: #555;
    flex: 2;
    /* Make the first column wider */
    background-color: transparent;
    /* Remove background color from the first column */
}

.table-header-row .table-cell {
    background-color: transparent;
}

/* Styles for the body rows with separable space */
.table-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Separable space between rows */
}

.table-body .table-row:nth-child(even) .table-cell:not(:first-child) {
    background-color: #f9f9f9;
}


/* Color classes for table cells */
.cell-green {
    background-color: #e8f5e9;
    color: #388e3c;
}

.cell-yellow {
    background-color: #fffde7;
    color: #fbc02d;
}

.cell-red {
    background-color: #fbe9e7;
    color: #d32f2f;
}

.header-title {
    font-size: 1.5rem;
    font-weight: 600;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-logo {
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
}

.team-details {
    display: flex;
    flex-direction: column;
}

.league-position,
.table-cell:first-child {
    font-size: 0.9rem;
    color: #777;
}

.form-string {
    display: flex;
    gap: 5px;
    margin-top: 5px;
}

.form-string-item {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.form-string-item.win {
    background-color: #4CAF50;
}

.form-string-item.draw {
    background-color: #ffc107;
}

.form-string-item.loss {
    background-color: #f44336;
}

/* Styles for the stats list */
.stats-list {
    padding: 0;
}

.stats-row {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    background-color: #ffffff;
    border-radius: 0;
    overflow: hidden;
    border-bottom: 1px solid #e0e0e0;
}

.stats-row:last-child {
    border-bottom: none;
}

.stat-label {
    flex-basis: 24%;
    padding: .4rem .5rem;
    font-weight: 500;
    font-size: 0.9rem;
}

.stat-value {
    flex-basis: 15%;
    /* padding: 1rem 1.5rem; */
    font-weight: bold;
    text-align: right;
    border-left: 1px solid #e0e0e0;
}

.stat-bar-container {
    flex-grow: 1;
    height: 100%;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    position: relative;
}

.stat-bar {
    height: 100%;
    transition: width 0.5s ease;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    height: 20px;
}

.stat-bar-label {
    position: absolute;
    right: 1rem;
    color: #444;
    font-weight: bold;
    z-index: 2;
    font-size: 0.9rem;
}

.bar-green {
    background-color: #e8f5e9;
}

.bar-yellow {
    background-color: #fffde7;
}

.bar-red {
    background-color: #fbe9e7;
}


/* Standing Table */
.league-table {
    width: 100%;
    border-collapse: collapse;
    /* Ensured min-width so the table doesn't get too compressed */
    /* min-width: 600px; */
}

.league-table thead th {
    text-align: right;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    background-color: #fafafa;
    border-bottom: 1px solid #e0e0e0;
}

.league-table thead th:first-child {
    text-align: left;
    padding-left: 2rem;
}

.league-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: background-color 0.2s;
}

.league-table tbody tr:hover {
    background-color: #f5f5f5;
}

.league-table tbody td {
    padding: 0.75rem 1rem;
    text-align: right;
    color: #333;
    font-size: 0.9rem;
    font-weight: 500;
}

.league-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* Specific cell content styling */
.team-cell {
    display: flex;
    align-items: center;
    text-align: left;
    padding-left: 2rem;
    position: relative;
    /* Added min-width to prevent team name from wrapping awkwardly */
    min-width: 180px;
}

.team-position {
    width: 25px;
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    color: #666;
    margin-right: 1rem;
}

.team-logo {
    width: 28px;
    height: 28px;
    margin-right: 0.75rem;
}

.team-name {
    font-weight: 600;
    color: #1c1c1c;
}

.status-icon {
    position: absolute;
    left: 2.75rem;
    bottom: 0.25rem;
    font-size: 0.75rem;
}

.status-icon.win {
    color: #4CAF50;
}

.status-icon.draw {
    color: #ffc107;
}

.status-icon.loss {
    color: #f44336;
}

.form-icon {
    margin-left: 0.5rem;
    font-size: 0.75rem;
}

.form-icon.win {
    color: #4CAF50;
}

.form-icon.draw {
    color: #ffc107;
}

.form-icon.loss {
    color: #f44336;
}

.positive {
    color: #4CAF50;
    font-weight: bold;
}

.neutral {
    color: #ffc107;
    font-weight: bold;
}

.negative {
    color: #f44336;
    font-weight: bold;
}

.top-header {
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #e0e0e0;
    font-weight: 600;
    color: #444;
}

.top-header h2 {
    font-size: 1.25rem;
    margin: 0;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    border: 1px solid #ccc;
    font-size: 0.875rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.header-button:hover {
    background-color: #f0f0f0;
}

.header-button i {
    color: #888;
}

.kdiad img {
    width: 18px;
}


.main-heading {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 1rem;
}

/* Grid container for leagues */
.leagues-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1rem;
}

/* Individual league item styling */
.league-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #fdfdfd;
    transition: transform 0.2s, box-shadow 0.2s;
}

.league-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.league-logo {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.league-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.league-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.league-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1c1c1c;
}

.league-meta {
    font-size: 0.85rem;
    color: #777;
    margin-top: 0.25rem;
}

.league-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1rem;
}

/* League Logo */
.league-logo {
    flex-shrink: 0;
}

.league-logo img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: contain;
}

/* Card Details */
.card-details {
    display: flex;
    flex-direction: column;
}

.card-details h1 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #6d28d9;
    /* A shade of purple */
    margin: 0;
}

.card-details p {
    font-size: 0.875rem;
    color: #4b5563;
    /* A shade of gray */
    margin-top: 0.25rem;
}

/* Navigation Section */
.nav-section {
    width: 100%;
    max-width: 1024px;
    border-top: 1px solid #d1d5db;
    /* A shade of gray */
    border-bottom: 1px solid #d1d5db;
    /* A shade of gray */
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin-top: 2rem;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-link-item {
    padding: 0.5rem 1rem;
    color: #4b5563;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.2s ease-in-out;
}

.nav-link-item:hover {
    color: #6d28d9;
}

/* Rating styles */
.rating {
    font-size: 1.1rem;
    color: #f39c12;
    /* A star color */
    display: flex;
    align-items: center;
    margin-left: auto;
    /* Push the rating to the right */
}

.rating .fa-star,
.rating .fa-star-half-alt,
.rating .far {
    margin: 0 1px;
}

/* Media queries for smaller screens to adjust padding and font size */

.md45d {
    display: flex;
    column-gap: 21px;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: white;
}

.league-nameda {
    display: flex;
    gap: .3rem;
    align-items: center;
}

/* Language Selection CSS */
.language-selector-container {
    position: relative;
    display: inline-block;
    font-family: Arial, sans-serif;
    margin-left: 1rem;
}

.language-selector-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem 0rem;
    font-size: 0.875rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    border-radius: 0.375rem;
    outline: none;
    width: 95px;
}

.language-selector-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.language-selector-button .flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    border-radius: 50%;
    object-fit: cover;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #1f2937;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0.375rem;
    overflow: hidden;
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0 0;
    display: none; /* Initially hidden */
}

.dropdown-menu.visible {
    display: block;
    z-index: 999999;
}

.dropdown-menu li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease-in-out;
}

.dropdown-menu li a:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.dropdown-menu li a .flag-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    border-radius: 50%;
    object-fit: cover;
}
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    padding: 35px;
}

.pagination a, .pagination span {
    padding: 0px 7px;
    border-radius: 6px;
    text-decoration: none;
    color: #4a5568;
    background-color: #f7fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease-in-out;
    font-size: 14px;
}

.pagination a:hover {
    background-color: #e2e8f0;
}

.pagination .current-page {
    background-color: #2d3748;
    color: #ffffff;
    border-color: #2d3748;
    font-weight: 700;
}

.pagination .disabled {
    pointer-events: none;
    opacity: 0.5;
}


.pagination a {
    padding: 6px 10px;
    border: 1px solid #ccc;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
}

.pagination a.active {
    background: #4CAF50;
    color: #fff;
    border-color: #4CAF50;
}

.pagination .ellipsis {
    display: inline-block;
    padding: 6px 5px;
    font-size: 14px;
    color: #888;
}


.fe0b3c {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    box-sizing: border-box;
}

.d2a5b6 {
    position: relative;
    background-color: var(--dark-surface);
    overflow: hidden;
    height: 160px; /* Fixed height */
}

.a1b9c7 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.a1b9c7::-webkit-scrollbar { display: none; }

.f8d7c9 {
    position: relative;
    flex: 0 0 100%;
    scroll-snap-align: start;
    height: 160px;
    overflow-y: hidden;
}
/* Add this inside your CSS */
.f8d7c9::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(30 30 30 / 93%); /* dark overlay using --dark-surface */
    z-index: 2; /* behind content */
}
.b3d4f5 {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Grid layout for match info */
.c7d9e4 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    justify-items: center;
    gap: 0.5rem;
    z-index: 3;
    font-size: 0.6rem; /* scale text down */
}

/* Teams and scores */
.g2h9j4, .v4w5x6 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.p7q8r9 { font-size: 1rem; margin: 0.1rem 0; color: var(--text-primary); }
.s1t2u3 { width: 50px; height: 50px; object-fit: contain; }
.v4w5x6 { display: flex; flex-direction: column; align-items: center; }
.y7z8a9 { font-size: 0.9rem; padding: 0.1rem 0.3rem; background-color: var(--accent-red); color: #fff; font-weight: 700; border-radius: 3px; text-transform: uppercase; margin-bottom: 0.1rem; }
.y7z8a99 { font-size: 0.9rem; padding: 0.3rem 0.6rem; background-color: #181818; color: #fff; font-weight: 700; border-radius: 3px; text-transform: uppercase; margin-bottom: 0.1rem; }
.y7z8a999 { font-size: 0.9rem; padding: 0.3rem 0.6rem; background-color: #595959; color: #fff; font-weight: 700; border-radius: 3px; text-transform: uppercase; margin-bottom: 0.1rem; }
.b0c1d2 { font-size: 1.9rem; font-weight: 700; margin: 0; color: var(--text-primary); }

/* Navigation dots */
.e6f1a8 {
    position: absolute;
    bottom: 0.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 4;
}
.e3f4g5 {
    width: 10px;
    height: 10px;
    background-color: var(--text-secondary);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}
.e3f4g5.active { background-color: var(--accent-color); }


/* The main dashboard container */
.g4t5j {
    width: 100%;
    background-color: #ffffff;
    padding: 8px 0px;
    margin-bottom: 23px;
}

/* A single row for each statistic */
.b1c8e {
    display: flex;
    align-items: center;
    margin: 1.25rem 0; /* 20px */
    gap: 0.625rem; /* 10px */
}

/* The numeric value on the left and right */
.c9g2h {
    font-weight: 600;
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
    flex-shrink: 0;
    transition: font-size 0.3s ease;
}

/* The central part of the row containing label and progress bar */
.e7a2b {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* The text label for the statistic */
.f8k1i {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem; /* 8px */
    transition: font-size 0.3s ease;
}

/* The container for the progress bar */
.a3f7d {
    display: flex;
    width: 100%;
    height: 0.75rem; /* 12px */
    background-color: #444;
    border-radius: 0.375rem; /* 6px */
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* The individual progress bars for left and right */
.h4p9m, .j6q5z {
    height: 100%;
    /*border-radius: 0.375rem;*/
}

/* Color for the left side of the progress bar */
.h4p9m {
    background-color: var(--left-color);
}

/* Color for the right side of the progress bar */
.j6q5z {
    background-color: var(--right-color);
}

/* Specific widths for each row based on the screenshot */
.d2l4o .h4p9m { width: 50%; }
.d2l4o .j6q5z { width: 50%; }

.m5n8o .h4p9m { width: 100%; }
.m5n8o .j6q5z { width: 0%; }

.p7s9t .h4p9m { width: 60%; }
.p7s9t .j6q5z { width: 40%; }

.q1r2u .h4p9m { width: 60%; }
.q1r2u .j6q5z { width: 40%; }

.s3t4v .h4p9m { width: 45.45%; /* 5 / (5+6) */ }
.s3t4v .j6q5z { width: 54.55%; /* 6 / (5+6) */ }

.u5w6x .h4p9m { width: 50%; }
.u5w6x .j6q5z { width: 50%; }

.y7z8a .h4p9m { width: 66.67%; /* 2 / (2+1) */ }
.y7z8a .j6q5z { width: 33.33%; }


/* MOBILE: Hide extra numbers, only show 1 before/after current */
@media (max-width: 600px) {
    .pagination a.page-btn {
        display: none;
    }
    .pagination a.active,
    .pagination a.active + a.page-btn,
    .pagination a.page-btn:nth-last-child(2),
    .pagination a.page-btn:first-child,
    .pagination a.active ~ a.page-btn:nth-of-type(1),
    .pagination a.page-btn:nth-of-type(1) {
        display: inline-block;
    }
    .pagination .ellipsis {
        display: inline-block;
    }
}

.prediction-section{
    display: flex;
    flex-direction: column;
    align-items: center
}

.search-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity .3s;
    overflow-y: scroll;
}

.search-overlay.active {
    display: flex;
    opacity: 1;
}

.search-container {
    /*position: relative;*/
    /*width: 90%;*/
    /*max-width: 600px;*/
    padding: 20px;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
}

.close-btn svg {
    width: 24px;
    height: 24px;
}

.search-input-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

#search-input {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    color: #333;
}

.search-results {
    position: absolute;
    /*top: 45px;*/
    width: 90%;
    /*max-height: 50vh;*/
    overflow-y: auto;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-top: 8px;
    padding: 8px;
    display: none;
    margin-top: 55px;
}

.search-results a {
    display: flex;
    align-items: center;
    padding: 8px;
    border-bottom: 1px solid #eee;
    color: #333;
    text-decoration: none;
    transition: background .2s;
}

.search-results a:hover {
    background: #f5f5f5;
}

.search-results img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
    margin-right: 8px;
    object-fit: cover;
}

.search-results .result-category {
    font-weight: bold;
    color: #888;
    margin: 8px 0;
    text-transform: uppercase;
    font-size: .8rem;
}

.search-results .timestamp {
    font-size: .7rem;
    color: #666;
    margin-left: auto;
}


@media (min-width: 769px) {
    .mobile-nav-icons, .search-btn, .search-overlay {
        display: none !important;
    }

    .main-nav {
        display: flex;
        justify-content: space-between;
    }

    .nav-links {
        display: flex;
        align-items: center;
        position: relative;
        padding-right: 20px;
    }

}

/* Responsive Design */

@media (max-width: 768px) {
        .search-container.transition-up {
        animation: slideUp .3s forwards;
    }

    @keyframes slideUp {
        to { transform: translateY(-40vh); }
    }

    .search-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100vh;
        width: 100%;
    }
        .c7d9e4 { gap: 0.3rem; width: 80%; }
    /*.p7q8r9 { font-size: 0.6rem; }*/
    /*.s1t2u3 { width: 25px; height: 25px; }*/
    /*.b0c1d2 { font-size: 0.9rem; }*/
    /*.y7z8a9 { font-size: 0.45rem; padding: 0.1rem 0.2rem; }*/
    
    .dek4{
        display: flex;
    }
    .nav-links {
        display: none;
    }
.cornerstatsmodfa{
    display: none;
}
    .main-nav {
        justify-content: space-between;
    }

    .secondary-nav {
        flex-direction: row;
        justify-content: flex-start;
        /* overflow-x: auto; */
        margin-top: 0.5rem;
        /* gap: 0.2rem; */
    }

    .secondary-nav a {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .mobile-nav-icons {
        display: flex;
    }

    .team-info img {
        width: 25px;
        height: 25px;
    }

    .leagues-grid {
        grid-template-columns: 1fr;
        padding: 5px;
    }

    .main-heading {
        font-size: 1.25rem;
        text-align: center;
    }

    .time-wrapper>div,
    .win-probability>span,
    .prediction-section>span {
        /*font-size: 12px;*/
        font-weight: 600;
    }

    .circular-progress-container {
        width: 55px;
        height: 55px;
    }

    .circular-progress-container-match {
        width: 55px;
        height: 55px;
    }

    .circular-progress-container>.percentage-text {
        font-size: 14px;
    }

    .circular-progress-container-match>.percentage-text {
        font-size: 14px;
    }

    .team .team-name {
        font-size: 14px;
    }

    /* .match-card {
                flex-direction: column;
                gap: 1rem;
            }

            .match-card .team-info {
                width: 100%;
                flex-direction: row;
                justify-content: center;
                gap: 0.5rem;
            }

            .match-card .match-center {
                width: 100%;
                order: 1;
            }

            .match-card .team-info:nth-of-type(1) {
                order: 2;
            }

            .match-card .team-info:nth-of-type(2) {
                order: 3;
            }

            .team-info img {
                width: 40px;
                height: 40px;
            }

            .prediction-section {
                flex-direction: row;
                justify-content: center;
                gap: 1rem;
                width: 100%;
            } */

    .article-card {
        flex-direction: column;
    }

    .article-card img {
        width: 100%;
        height: auto;
    }

    .stats-block {
        padding: 1.5rem;
    }
}

@media (max-width: 405px) {
    .match-details {
        column-gap: 4%;
    }

    .match-info-section {
        padding: 1.5rem 0rem;
    }
}

@media (max-width: 392px) {
    .secondary-nav a {
        font-size: .7rem;
    }
    
    .matches-tabs button{
        font-size: .9rem;
    }
}

@media (max-width: 600px) {

    .league-table thead th,
    .league-table tbody td {
        padding: 0.07rem 0.004rem;
        font-size: 0.8rem;
        text-align: center;
    }
}


@media (max-width: 480px) {
    .title-section h1 {
        font-size: 2rem;
    }

        .c9g2h {
            font-size: 1.25rem;
        }
        .f8k1i {
            font-size: 1.1rem;
        }
    .top-header {
        /* flex-direction: column; */
        align-items: flex-start;
        gap: 0.5rem;
    }

    .header-buttons {
        width: 100%;
        justify-content: space-around;
        gap: 0.5rem;
    }

    .team-cell {
        padding-left: 1rem;
    }

    .header-buttons {
        width: 100%;
        justify-content: space-around;
        gap: 0.5rem;
    }

    .league-table thead th,
    .league-table tbody td {
        /* padding: 0.5rem 0.75rem; */
        font-size: 0.8rem;
    }

    .team-cell {
        padding-left: 1rem;
    }
}


/* Responsive adjustments for mobile */
@media (max-width: 550px) {
    .table {
        width: 100%;
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (max-width: 436px) {
    .team-info {
        font-size: 13px;
    }

    .team-logo {
        width: 20px;
        height: 20px;
    }
}