.steelers-hub-fixture {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    color: #000000;
    margin-bottom: 15px;
    border:#8e8e8e solid 1px;
}

.fixture-details {
    display: flex;
    flex-direction: column;
}

.fixture-type {
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.fixture-meta {
    display: flex;
    flex-direction: column;
}

.fixture-date,
.fixture-venue {
    font-size: 17px;
}

.month-header {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
    margin-top:30px;
    text-transform: uppercase;
}

.team {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Evenly space home, vs, away */
    gap: 40px; /* Increased from 20px for more space */
    flex-wrap: nowrap;
}

.team-logo {
    height: 62px !important;
    object-fit: contain;
}

.team-name {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    flex: 0 1 auto; /* Allow to grow to fit content, don't shrink */
    min-width: 120px;
    max-width: none; /* Remove max-width restriction */
    gap: 10px;
}

/* Only for next fixture widget, keep current sizing */
.next-fixture-widget .team-name {
    min-width: 100px;
    max-width: 140px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
}

.versus {
    margin: 0 15px;
    font-size: 24px;
    font-weight: bold;
    flex: 0 0 auto;
}

.home-bg {
    background-color: #fbe2d6 !important; /* Light orange */
}
.away-bg {
    background-color: #e5e5e5 !important; /* Keep grey for away */
}

/* Next Fixture Widget Styles */
.next-fixture-widget {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    background: #e5e5e5;
    border-radius: 0;
    box-shadow: none;
    margin: 0 0 20px 0;
    max-width: 100%;
    width: 100%;
    padding: 0;
    border:#8e8e8e solid 1px;
}
.next-fixture-widget .team {
    flex: 1 1 0;
    justify-content: center;
    gap: 40px;
    align-items: center;
    min-width: 0;
}
.next-fixture-widget .team-logo {
    height: 78px !important;
    object-fit: contain;
}
.next-fixture-widget .team-name {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    max-width: 140px;
    gap: 6px;
}
.next-fixture-widget .versus {
    flex-direction: column;
    align-items: center;
    font-size: 28px;
    margin: 0 10px;
}
.next-fixture-widget .fixture-details {
    flex: 1 1 0;
    text-align: center;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}
.next-fixture-widget .fixture-date {
    font-size: 20px;
    font-weight: bold;
}
.next-fixture-widget .fixture-venue {
    font-size: 16px;
    margin-top: 5px;
}
.next-fixture-widget .cancelled-title {
    color: red;
    font-weight: bold;
}
.next-fixture-widget .warning-message {
    background: #ff9800;
    color: #fff;
    padding: 6px 0;
    margin: 10px 0;
    font-weight: bold;
    border-radius: 4px;
}
.next-fixture-widget .buy-tickets-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}
.next-fixture-widget .buy-tickets-btn:hover {
    background: #222;
}
.next-fixture-widget .next-fixture-countdown {
    margin-top: 10px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
}
.next-fixture-widget .countdown-number {
    font-size: 18px;
    font-weight: bold;
    margin: 0 2px;
}
.next-fixture-widget .countdown-label {
    font-size: 12px;
    text-transform: uppercase;
    margin: 0 6px 0 2px;
    color: #555;
}
.next-fixture-widget .no-fixture {
    text-align: center;
    color: #888;
    font-size: 18px;
    padding: 20px 0;
}

.next-fixture-team-name {
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.next-fixture-versus {
    flex-direction: column;
    align-items: center;
}
.next-fixture-details {
    text-align: center;
    margin-top: 10px;
}
.next-fixture-date-month {
    font-size: 20px;
    font-weight: bold;
}
.next-fixture-date-day,
.next-fixture-date-time {
    font-size: 18px;
}
.next-fixture-venue {
    font-size: 16px;
    margin-top: 5px;
}
.next-fixture-cancelled-title {
    color: red;
    font-weight: bold;
}
.next-fixture-warning-message {
    background: #ff9800;
    color: #fff;
    padding: 6px 0;
    margin: 10px 0;
    font-weight: bold;
    border-radius: 4px;
}
.next-fixture-buy-tickets-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 10px 20px;
    margin-top: 10px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: bold;
    text-decoration: none;
    transition: background 0.2s;
}
.next-fixture-buy-tickets-btn:hover {
    background: #222;
}

@media (max-width: 700px) {
  .steelers-hub-fixture {
    flex-direction: column;
    align-items: stretch;
    padding: 10px 5px;
  }
  .steelers-hub-fixture .team {
    flex-direction: row;
    justify-content: center;
    gap: 16px;
    margin-bottom: 10px;
  }
  .steelers-hub-fixture .fixture-details {
    margin-top: 0;
    padding: 10px 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .steelers-hub-fixture .fixture-date,
  .steelers-hub-fixture .fixture-venue {
    text-align: center !important;
    width: 100%;
    display: block;
  }
  .steelers-hub-fixture .team-name {
    min-width: 120px;
    max-width: 180px;
    font-size: 15px;
    gap: 4px;
  }
  .steelers-hub-fixture .team-logo {
    height: 44px !important;
  }
  .next-fixture-widget .team-logo {
    padding-top: 10px;
  }
  .next-fixture-widget .fixture-details {
    text-align: center;
  }
  .next-fixture-widget .fixture-date,
  .next-fixture-widget .fixture-venue {
    text-align: center !important;
    width: 100%;
    display: block;
  }
}

@media (max-width: 700px) {
  .next-fixture-widget {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
  }
  .next-fixture-widget .team {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
  }
  .next-fixture-widget .fixture-details {
    margin-top: 0;
    padding: 10px 0 0 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}