/* === BASE === */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2b2b2b;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

/* === LAYOUT === */
.container {
  background-color: #f8f6f2;
  border: 1px solid #ccc;
  border-radius: 10px;
  padding: 0px 40px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: 525px;
  width: 100%;
  min-height: 650px;
  
  /* --- ALTERAÇÃO 1: ZOOM --- */
  /* Aplica um zoom de 10% no container inteiro */
  transform: scale(1.3);
}

/* === TABLE === */
.toggle-table {
  width: 100%;
  border-spacing: 10px 8px;
}

.toggle-table td {
  vertical-align: middle;
  font-size: 16px;
}

/* Essa regra alinha os checkboxes com as labels (Updated/Restarted) */
.toggle-table td:nth-child(2) {
  display: flex;
  align-items: center;
  gap: 5px; /* Espaço bem pequeno entre o checkbox e o texto */
  padding-left: 0; /* Remove padding lateral se houver */
}
/* Garante que as labels fiquem coladas no checkbox */
.toggle-table td:nth-child(2) label {
  margin-left: 0;
  padding-left: 0;
}

.toggle-table td:first-child {
  width: 100px;
}

/* === BUTTONS === */
.toggle-switch {
  width: 100px;
  padding: 5px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.toggle-switch.farm {
  background-color: #a5d6a7;
}

.toggle-switch.tourney {
  background-color: #64b5f6;
}

/* === SPECIAL === */
#karma-counter {
  font-size: 8px;
  text-align: center;
  color: #888;
}