@import url('https://cdn.jsdelivr.net/npm/tailwindcss@2.2.19/dist/tailwind.min.css');

* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-tap-highlight-color: transparent;
}

input, button {
  font-family: inherit;
}

button:active {
  transform: scale(0.98);
}

.uno-score-btn {
  min-width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #374151;
  border: 1px solid #4b5563;
  border-radius: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.15s;
}

.uno-score-btn:hover {
  background-color: #4b5563;
}

.uno-score-btn.selected {
  background-color: #3b82f6;
  border-color: #60a5fa;
}

.uno-score-btn[data-value="20"],
.uno-score-btn[data-value="50"] {
  background-color: #7c3aed;
  border-color: #8b5cf6;
}

.uno-score-btn[data-value="20"]:hover,
.uno-score-btn[data-value="50"]:hover {
  background-color: #8b5cf6;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}