.tab-button {
  @apply px-4 py-2 text-gray-500 hover:text-gray-700 hover:border-gray-300;
}

.tab-button.active {
  @apply border-b-2 border-blue-500 text-blue-600;
}

.tab-content {
  @apply bg-white p-6 rounded-lg shadow;
}

.tab-content.hidden {
  display: none;
}