.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: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.roster-navigation .top-row .back-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #FFFFFF;
  text-decoration: none;
  padding: 8px 16px;
  background-color: transparent;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
  font-weight: 500;
}
.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 .top-row .season-selector {
  display: flex;
  align-items: center;
  gap: 10px;
}
.roster-navigation .top-row .season-selector label {
  color: #FFFFFF;
  margin: 0;
  font-weight: 500;
}
.roster-navigation .top-row .season-selector select {
  padding: 8px 16px;
  background-color: #303030;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  transition: all 0.3s ease;
  cursor: pointer;
}
.roster-navigation .top-row .season-selector select:hover, .roster-navigation .top-row .season-selector select:focus {
  border-color: #ffe23f;
  background-color: rgba(255, 226, 63, 0.1);
  outline: none;
}
.roster-navigation .roster-tabs {
  display: flex;
  gap: 1px;
}
.roster-navigation .roster-tabs .roster-tab {
  flex: 1;
  padding: 16px 24px;
  background-color: #303030;
  color: #9A9A9A;
  text-decoration: none;
  text-align: center;
  position: relative;
  font-weight: 600;
  font-family: "Roboto Condensed", sans-serif;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}
.roster-navigation .roster-tabs .roster-tab:hover {
  color: #ffe23f;
  border-bottom-color: #ffe23f;
}
.roster-navigation .roster-tabs .roster-tab.active {
  background-color: #ffe23f;
  color: #303030;
  border-bottom-color: #303030;
}
.roster-navigation .roster-tabs .roster-tab.active:hover {
  background-color: rgb(255, 218.296875, 12);
}
.roster-navigation .roster-tabs .roster-tab .tab-icon {
  margin-right: 8px;
  font-size: 18px;
}
.roster-navigation .roster-tabs .roster-tab .tab-label {
  font-size: 16px;
}

@media (max-width: 768px) {
  .roster-navigation .top-row {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .roster-navigation .top-row .back-button {
    width: 100%;
    justify-content: center;
  }
  .roster-navigation .top-row .season-selector {
    flex-direction: column;
    align-items: stretch;
  }
  .roster-navigation .top-row .season-selector label {
    text-align: center;
  }
  .roster-navigation .top-row .season-selector select {
    width: 100%;
  }
  .roster-navigation .roster-tabs {
    flex-direction: column;
  }
  .roster-navigation .roster-tabs .roster-tab {
    padding: 16px;
  }
  .roster-navigation .roster-tabs .roster-tab .tab-label {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .roster-navigation .roster-tabs .roster-tab .tab-icon {
    display: none;
  }
}
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 #dee2e6;
  border-radius: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.roster-grid .roster-card:hover {
  border-color: #ffe23f;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.roster-grid .roster-card .card-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-bottom: 2px solid #ffe23f;
  max-height: 500px;
}
.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 */
