.camiseta {
  min-width: 48px;
  min-height: 48px;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  border: 2px solid #222;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
  margin: 2px;
}
.camiseta.bg-green-500 {
  background: linear-gradient(135deg, #22c55e 60%, #16a34a 100%);
  color: #fff;
}
.camiseta.bg-orange-500 {
  background: linear-gradient(135deg, #f59e42 60%, #ea580c 100%);
  color: #fff;
}
.camiseta.bg-yellow-400 {
  background: linear-gradient(135deg, #fde047 60%, #facc15 100%);
  color: #222;
}
.camiseta:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.camiseta:hover:not(:disabled) {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  z-index: 2;
}
