body {
  background-color: #f8f9fa;
}

.logo-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.logo {
  height: 160px;
  border-radius: 100%;
}

/* Painel fixo */
.sticky-top-panel {
  position: sticky;
  top: 10px;
  z-index: 10;
}

/* Pool */
.players-pool {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border: 2px dashed #dee2e6;
  border-radius: 12px;
  background: #fdfdfd;
}

.players-pool input {
  flex: 1;
  border: none;
  outline: none;
  min-width: 140px;
}

/* Badge dinâmica */
.player {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 0.85rem;
  white-space: nowrap;

  touch-action: none;
  user-select: none;
  cursor: grab;
}

.player:active {
  cursor: grabbing;
}

.player.dragging {
  opacity: 0.6;
}

#playerInput {
  touch-action: manipulation;
}

/* Grupos */
.drop-zone {
  min-height: 90px;
  border: 2px dashed #dee2e6;
  border-radius: 12px;
  padding: 10px;
  background: #f8f9fa;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* Cards */
.team-card {
  background: white;
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

/* Footer */
.app-footer {
  margin-top: 40px;
  padding: 10px;
  text-align: center;
  color: #6c757d;
  font-size: 0.8rem;
}

/* Mobile */
@media (max-width: 768px) {
  .sticky-top-panel {
    max-height: 75vh;
    overflow-y: auto;
  }
}
