body {
  font-family: Arial, sans-serif;
}

.login-card {
  width: 100%;
  max-width: 420px;
  background: #1f1f1f;
  color: white;
  border-radius: 18px;
}

.users-btn {
  background: #fd7e14;
  border-color: #fd7e14;
  color: white;
}

.users-btn:hover {
  background: #e96b00;
  border-color: #e96b00;
  color: white;
}

.card-dark {
  background: #1f1f1f;
  color: white;
  border-radius: 18px;
}

.game-card {
  background: #2b2b2b;
  border: 1px solid #444;
  border-radius: 12px;
  padding: 12px;
  cursor: pointer;
}

.game-card input {
  transform: scale(1.3);
}

.ticket-print {
  background: white;
  color: black;
  padding: 20px;
  width: 300px;
  text-align: center;
}

@media print {
  body * {
    visibility: hidden;
  }

  #printArea, #printArea * {
    visibility: visible;
  }

  #printArea {
    position: absolute;
    right: 0;
    top: 0;
  }
}