/* Tab Button Improvements */

/* Equal width tabs with proper padding */
.team-stats-tabs {
  display: flex;
  gap: 0.25rem;
}

.team-stats-tabs .tabs__button {
  flex: 1;
  min-width: 0; /* Allows flexbox to shrink if needed */
  padding-inline: 2rem !important; /* Force padding even with flex */
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box; /* Include padding in width calculations */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .team-stats-tabs .tabs__button {
    padding-inline: 0.75rem !important;
    font-size: 0.75rem;
  }
}