
body { margin:0; font-family:Arial; background:#0a0a0a; color:white; }

.admin .panel { margin:15px; }

#board {
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:200px;
  background:linear-gradient(90deg,#111,#222);
  padding:20px;
}

.team { font-size:2em; }
.center { text-align:center; }

#lineupContainer {
  position:absolute;
  bottom:0;
  width:100%;
  display:flex;
  gap:10px;
  justify-content:center;
}

.card {
  background:#222;
  padding:10px;
  display:flex;
  align-items:center;
  gap:10px;
  transform:translateY(100px);
  animation:slideUp 0.5s forwards;
}

@keyframes slideUp {
  to { transform:translateY(0); }
}

.img {
  width:60px;
  height:80px;
  background:#555;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.hidden {
  display: none;
}

.modal-content {
  background: #1c1c1c;
  padding: 30px;
  border-radius: 16px;
  width: 320px;
  text-align: center;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.modal-content h2 {
  margin-bottom: 20px;
}

.modal-content input {
  width: 100%;
  padding: 15px;
  font-size: 1.5em;
  text-align: center;
  border-radius: 10px;
  border: none;
  margin-bottom: 20px;
}

.modal-buttons {
  display: flex;
  gap: 10px;
}

.modal-buttons button {
  flex: 1;
  padding: 15px;
  font-size: 1.2em;
  border-radius: 10px;
  border: none;
}

.primary {
  background: #00c853;
  color: white;
}

#cancelReset {
  background: #444;
  color: white;
}
.animate {
  transform: scale(0.9);
  opacity: 0;
  animation: popIn 0.25s forwards;
}

@keyframes popIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.time-buttons {
  display: flex;
  gap: 10px;
  margin: 15px 0 20px;
}

.time-buttons button {
  flex: 1;
  padding: 14px;
  font-size: 1.1em;
  border-radius: 10px;
  background: #2a2a2a;
  color: white;
  border: none;
  transition: background 0.2s;
}

.time-buttons button:active {
  background: #444;
}