    .league-table {
        width: 100%;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
        font-size: 12px;
    }

    .league-table th {
        padding: 1px 2px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 0, 0, 0.2);
        background-color: black;
        color: white;
    }

    .league-table td {
        padding: 2px 2px;
        text-align: center;
        border-bottom: 1px solid #e6e7e8; /* Changed to white horizontal lines */
        background-color: #333;
        color: white;
    }

    .league-table th, .league-table td {
        border-left: none;
        border-right: none;
    }

    .league-table thead {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 11px;
    }

    .club-container {
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: left;
    }

    .club-logo {
        width: 18px;
        height: 18px;
        border-radius: 4px;
    }

    .view-table-button {
        display: inline-block;
        text-align: center;
        margin-top: 10px;
        padding: 7px 22px;
        background-color: white;
        color: white;
        border-radius: 1px;
        font-size: 11px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .view-table-button:hover {
        background-color: #34eb64;
        color: #fff;
        text-decoration: none;
    }
    /* goala and assist */
        .stats-table {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-collapse: collapse;
        font-family: Arial, sans-serif;
    }

    .stats-table th {
        font-size: 11px;
        padding: 1px 10px;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        background-color: black;
        color: white;
        border-left: none;
        border-right: none;
    }

    .stats-table td {
        font-size: 12px;
        padding: 2px 14px;
        text-align: left;
        border-bottom: 1px solid #e6e7e8; /* Changed to white horizontal lines */
        background-color: #333;
        color: white;
        border-left: none;
        border-right: none;
    }

    .stats-table th:nth-child(2),
    .stats-table td:nth-child(2) {
        width: 40%;
    }

    .stats-table th:nth-child(1),
    .stats-table td:nth-child(1) {
        width: 10%;
    }

    .stats-table th:nth-child(3),
    .stats-table td:nth-child(3) {
        width: 40%;
    }

    .stats-table th:nth-child(4),
    .stats-table td:nth-child(4) {
        width: 10%;
    }

    .stats-table thead {
        font-weight: bold;
        text-transform: uppercase;
        font-size: 11px;
    }

    .stats-table tbody tr:hover {
        background-color: #444;
    }

    .club-container {
        display: flex;
        align-items: center;
        gap: 4px;
        justify-content: left;
    }

    .club-logo {
        width: 14px;
        height: auto;
        border-radius: 4px;
        object-fit: contain;
        vertical-align: middle;
    }

    .goals-column {
        text-align: center !important;
    }

    .view-table-button {
        display: inline-block;
        text-align: center;
        margin-top: 2px;
        padding: 6px 22px;
        background-color: white;
        color: black;
        border-radius: 1px;
        font-size: 11px;
        text-decoration: none;
        transition: background-color 0.3s ease;
    }

    .view-table-button:hover {
        background-color: darkgreen;
        color: white;
        text-decoration: none;
    }

    .stats-table td a {
        color: white;
        text-decoration: none;
    }

    .stats-table td a:hover {
        color: #ddd;
    }

    @media (max-width: 576px) {
        .stats-table th:nth-child(2),
        .stats-table td:nth-child(2) {
            width: 35%;
        }

        .stats-table th:nth-child(3),
        .stats-table td:nth-child(3) {
            width: 35%;
        }

        .stats-table th:nth-child(1),
        .stats-table td:nth-child(1),
        .stats-table th:nth-child(4),
        .stats-table td:nth-child(4) {
            width: 15%;
        }
    }

    /* category*/
    	/* Add this CSS to make the images scrollable on small screens */
@media (max-width: 768px) {
    .scrollable-container {
      display: flex;
      overflow-x: auto;
      padding: 10px 0;
    }
  
    .scrollable-container .col-sm-2 {
      flex: 0 0 auto;
      margin-right: 10px; /* Adjust the margin to create a gap between images */
    }
  }
  
  /* Player card styling */
  .player-card {
      position: relative;
      background: #fff;
      border-radius: 10px;
      text-align: center;
      overflow: hidden;
      margin-bottom: 15px;
  }
  
  .player-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      border-radius: 10px;
  }
  
  .player-number {
      position: absolute;
      top: 10px;
      left: 10px;
      background: #000;
      color: #fff;
      padding: 5px 10px;
      border-radius: 50%;
      font-weight: bold;
  }
  
  .player-info {
      margin-top: 10px;
  }
  
  .player-name {
      font-weight: bold;
      text-transform: uppercase;
      line-height: 1.2;
      font-size: 1rem;
      display: flex;
      justify-content: center; /* Center the content horizontally */
      align-items: center;
      gap: 10px;
      text-align: center;
      margin: 0;
  }
  
  .player-fullname {
      font-size: 12px;
      white-space: nowrap;
  }
  
  .player-role {
      font-size: 14px;
      font-weight: bold;
      color: #1b0c40;
  }
  
  /* Small screen: horizontal scroll */
  @media (max-width: 767.98px) {
      .scroll-wrapper {
          overflow-x: auto;
          white-space: nowrap;
          padding-bottom: 10px;
      }
  
      .scroll-wrapper .player-item {
          display: inline-block;
          width: 70%;
          max-width: 220px;
          margin-right: 10px;
          vertical-align: top;
      }
  }
  
  /* Medium+ screens: tighter spacing */
  @media (min-width: 768px) {
      .player-item {
          padding-left: 5px;
          padding-right: 5px;
          margin-bottom: 20px;
      }
  }