.roster-navigation {
  background-color: #303030;
  padding: 0;
  margin-bottom: 30px;
  border-bottom: 2px solid #ffe23f;
}
.roster-navigation .container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.roster-navigation .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.15);
}
.roster-navigation .top-row .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 10px 20px;
  background-color: transparent;
  border: 2px solid #FFFFFF;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 4px;
}
.roster-navigation .top-row .back-button:hover {
  background-color: #ffe23f;
  color: #303030;
  border-color: #ffe23f;
}
.roster-navigation .top-row .back-button i {
  font-size: 14px;
}
.roster-navigation .team-selector {
  display: flex;
  gap: 8px;
}
.roster-navigation .team-selector .team-button {
  padding: 10px 24px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  border-radius: 4px;
  font-size: 16px;
}
.roster-navigation .team-selector .team-button:hover {
  background-color: rgba(255, 226, 63, 0.2);
  border-color: #ffe23f;
}
.roster-navigation .team-selector .team-button.active {
  background-color: #ffe23f;
  color: #303030;
  border-color: #ffe23f;
}
.roster-navigation .bottom-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  background-color: rgba(0, 0, 0, 0.1);
}
.roster-navigation .bottom-row .season-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}
.roster-navigation .bottom-row .season-tabs .season-tab {
  padding: 8px 16px;
  background-color: transparent;
  color: #9A9A9A;
  text-decoration: none;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-size: 15px;
}
.roster-navigation .bottom-row .season-tabs .season-tab:hover {
  color: #ffe23f;
  border-bottom-color: #ffe23f;
}
.roster-navigation .bottom-row .season-tabs .season-tab.active {
  color: #ffe23f;
  border-bottom-color: #ffe23f;
}
.roster-navigation .bottom-row .divider {
  width: 2px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.2);
}
.roster-navigation .bottom-row .type-tabs {
  display: flex;
  gap: 4px;
  padding: 8px 0;
}
.roster-navigation .bottom-row .type-tabs .type-tab {
  padding: 8px 20px;
  background-color: transparent;
  color: #9A9A9A;
  text-decoration: none;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  font-size: 15px;
}
.roster-navigation .bottom-row .type-tabs .type-tab:hover {
  color: #ffe23f;
  border-bottom-color: #ffe23f;
}
.roster-navigation .bottom-row .type-tabs .type-tab.active {
  color: #ffe23f;
  border-bottom-color: #ffe23f;
}

@media (max-width: 768px) {
  .roster-navigation .top-row {
    flex-direction: column;
    gap: 12px;
    padding: 12px;
  }
  .roster-navigation .top-row .back-button {
    width: 100%;
    justify-content: center;
  }
  .roster-navigation .team-selector {
    width: 100%;
    flex-direction: column;
  }
  .roster-navigation .team-selector .team-button {
    text-align: center;
  }
  .roster-navigation .bottom-row {
    flex-direction: column;
    gap: 8px;
    padding: 12px;
  }
  .roster-navigation .bottom-row .divider {
    display: none;
  }
  .roster-navigation .bottom-row .season-tabs,
  .roster-navigation .bottom-row .type-tabs {
    justify-content: center;
    width: 100%;
  }
}
@media (max-width: 576px) {
  .roster-navigation .top-row .back-button span {
    display: none;
  }
  .roster-navigation .top-row .back-button i {
    font-size: 18px;
  }
  .roster-navigation .team-selector .team-button {
    font-size: 14px;
    padding: 8px 16px;
  }
  .roster-navigation .bottom-row .season-tabs .season-tab,
  .roster-navigation .bottom-row .type-tabs .type-tab {
    font-size: 13px;
    padding: 6px 12px;
  }
}
body {
  font-family: "Roboto", sans-serif;
  background-color: #FFFFFF;
  color: #212529;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.page-header {
  background-color: #303030;
  color: #FFFFFF;
  padding: 24px 0;
  margin-bottom: 30px;
  border-bottom: 3px solid #ffe23f;
}
.page-header h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 2rem;
  text-align: center;
}
.page-header .subtitle {
  text-align: center;
  color: #9A9A9A;
  margin-top: 8px;
  font-size: 1.1rem;
}

.roster-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}
.roster-grid .roster-card {
  background: #FFFFFF;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.roster-grid .roster-card:hover {
  border-color: #ffe23f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
@keyframes slideStripes {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 256px 256px;
  }
}

.roster-grid .roster-card .card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 3px solid #ffe23f;
  max-height: 500px;
  background-color: #0a0a0a;
  background-size: 256px 256px;
  background-image: repeating-linear-gradient(
    135deg,
    #1a1a1a 0%,
    #1a1a1a 25%,
    #0a0a0a 25%,
    #0a0a0a 50%
  );
  animation: slideStripes 20s linear infinite;
  box-sizing: border-box;
}
.roster-grid .roster-card .card-body {
  padding: 16px;
  flex-grow: 1;
}
.roster-grid .roster-card .card-body .card-title {
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #303030;
  margin-bottom: 16px;
  border-bottom: 2px solid #ffe23f;
  padding-bottom: 8px;
}
.roster-grid .roster-card .card-body .card-info .info-row {
  display: flex;
  margin-bottom: 8px;
  padding: 4px 0;
  border-bottom: 1px solid #dee2e6;
}
.roster-grid .roster-card .card-body .card-info .info-row:last-child {
  border-bottom: none;
}
.roster-grid .roster-card .card-body .card-info .info-row .info-label {
  font-weight: 600;
  color: #6c757d;
  min-width: 120px;
}
.roster-grid .roster-card .card-body .card-info .info-row .info-value {
  color: #212529;
  font-weight: 500;
}
.roster-grid .roster-card .card-body .card-info .info-row .info-value.highlight {
  color: #ffe23f;
  background-color: #303030;
  padding: 2px 8px;
  font-weight: 700;
}

.alert-info {
  background-color: rgba(255, 226, 63, 0.1);
  border: 2px solid #ffe23f;
  color: #303030;
  padding: 24px;
  text-align: center;
  font-weight: 500;
  margin: 32px 0;
}

@media (max-width: 992px) {
  .roster-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .page-header h1 {
    font-size: 1.75rem;
  }
}
@media (max-width: 768px) {
  .roster-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
  .roster-grid .roster-card .card-image {
    max-height: 400px;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
}
@media (max-width: 576px) {
  .roster-grid {
    grid-template-columns: 1fr;
  }
  .roster-grid .roster-card .card-image {
    max-height: 500px;
  }
  .page-header {
    padding: 16px 0;
  }
  .page-header h1 {
    font-size: 1.25rem;
  }
}

/*# sourceMappingURL=public_roster_styles.css.map */
