.elementor-48 .elementor-element.elementor-element-1af160c7{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48 .elementor-element.elementor-element-100a0093{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48 .elementor-element.elementor-element-1f136890{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48 .elementor-element.elementor-element-71e04ac2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48 .elementor-element.elementor-element-e8469da{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-48 .elementor-element.elementor-element-780b6817{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS */img.logob {border-radius:60px; width:120px; margin:0 auto; padding:1em; background-color:#;}
 /* Container for all teams */
    .teams-container {
      display: flex;
      flex-direction: column; /* Stack sections vertically */
      gap: 20px;
      margin: 20px auto;
      max-width: 1200px;
      padding: 0 20px; /* Add padding for smaller screens */
    }

    /* Each team section */
    .team-section {
      display: flex;
      flex-direction: column;
      border-radius: 8px;
      color: #fff; /* Text color for sections */
      padding: 20px;
    }

    /* Team header: name (and logo if used) */
    .team-header {
      display: flex;
      align-items: center;
      margin-bottom: 20px;
    }
    .team-header img {
      height: 80px;
      margin-right: 20px;
    }
    .team-header h2 {
      font-size: 2rem;
      margin: 0;
    }

    /* Scroll container for tables */
    .table-responsive {
      position: relative; /* So we can absolutely position the scroll label */
      width: 100%;
      overflow-x: auto;       /* Enables horizontal scrolling on small screens */
      -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
      margin-bottom: 10px;
      border-radius: 8px;
    }

    /*
      SCROLL LABEL
      By default, we hide it for large screens. We only show it on smaller screens
      via a media query. We'll also hide it if the user has scrolled (class .scrolled).
    */
    .table-responsive::after {
      display: none; /* Hidden by default (for desktops or if not needed) */
      content: "SCROLL →";
      position: absolute;
      bottom: 10px;
      right: 10px;
      background-color: rgba(255, 255, 255, 0.8);
      color: #333;
      padding: 4px 8px;
      font-size: 0.8rem;
      border-radius: 4px;
      pointer-events: none; /* Let clicks pass through */
      box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
      transition: opacity 0.3s;
    }
    /* If user has scrolled, hide the label */
    .table-responsive.scrolled::after {
      opacity: 0;
      visibility: hidden;
    }

    /* Roster table styling */
    .roster-table {
      width: 100%;
      border-collapse: collapse;
      background-color: #fff; /* White background for table */
      color: #000;           /* Dark text for readability */
      border-radius: 8px;
      min-width: 600px;      /* Ensures columns don't get too cramped on mobile */
      table-layout: auto;    /* Allows columns to size based on content */
    }
    .roster-table thead {
      background-color: #ccc;
    }
    .roster-table th,
    .roster-table td {
      padding: 10px;
      border: 1px solid #ddd;
      text-align: left;
    }
    .roster-table th {
      text-transform: uppercase;
      font-weight: 600;
      font-size: 0.9rem;
    }

    /* ============ TEAM-SPECIFIC BACKGROUND GRADIENTS ============ */
    /* Example: Houston Astros: Navy (#002D62) to Orange (#EB6E1F) */
    /* Texas Rangers: Blue (#003278) to Red (#C0111F) */


.yankees {
  background: linear-gradient(90deg, #0C2340 0%, #C4CED4 100%);
}

.rangers {
  background: linear-gradient(90deg, #003278 0%, #C0111F 100%);
}

    .astros {
      background: linear-gradient(90deg, #002D62 0%, #EB6E1F 100%);
    }
    /* Atlanta Braves: Navy (#13274F) to Red (#CE1141) */
    .braves {
      background: linear-gradient(90deg, #13274F 0%, #CE1141 100%);
    }
    /* St. Louis Cardinals: Red (#C41E3A) to Navy (#0C2340) */
    .cardinals {
      background: linear-gradient(90deg, #C41E3A 0%, #0C2340 100%);
    }
    /* Seattle Mariners: Navy (#0C2C56) to Teal (#005C5C) */
    .mariners {
      background: linear-gradient(90deg, #0C2C56 0%, #005C5C 100%);
    }
    /* Detroit Tigers: Navy (#0C2340) to Orange (#FA4616) */
    .tigers {
      background: linear-gradient(90deg, #0C2340 0%, #FA4616 100%);
    }
    /* Minnesota Twins: Navy (#002B5C) to Red (#D31145) */
    .twins {
      background: linear-gradient(90deg, #002B5C 0%, #D31145 100%);
    }

    /* Responsive adjustments for small screens (phones) */
    @media (max-width: 768px) {
      .team-header img {
        height: 50px;      /* Scale down logo */
      }
      .team-header h2 {
        font-size: 1.6rem; /* Slightly smaller heading */
      }
      .team-section {
        padding: 15px;     /* Less padding on small devices */
      }
      .roster-table {
        min-width: 400px;  /* Allow narrower tables if needed */
      }
      /* Show the "SCROLL →" label only on smaller screens */
      .table-responsive::after {
        display: block;
      }
    }/* End custom CSS */