/* Scorecard specific styles */
.scorecard-hole-input {
  @apply w-full h-8 text-center border border-gray-300 rounded focus:border-teal-500 focus:ring-1 focus:ring-teal-500;
}

.scorecard-hole-input:focus {
  @apply border-[#125c6d] ring-[#125c6d];
}

.scorecard-grid {
  @apply grid gap-2;
  grid-template-columns: repeat(auto-fit, minmax(60px, 1fr));
}

.scorecard-card {
  @apply border-l-4 border-l-[#125c6d] shadow-sm hover:shadow-md transition-shadow;
}

.scorecard-leaderboard {
  @apply border-l-4 border-l-[#cfbd57];
}

.scorecard-button-primary {
  @apply bg-[#125c6d] hover:bg-[#0e4954] text-white border-[#125c6d];
}

.scorecard-button-secondary {
  @apply bg-[#157c8b] hover:bg-[#146d7d] text-white border-[#157c8b];
}

.scorecard-text-primary {
  @apply text-[#1a3616];
}

.scorecard-text-secondary {
  @apply text-[#125c6d];
}

.scorecard-gold {
  @apply text-[#cfbd57];
}

.scorecard-green {
  @apply text-[#646421];
}
