
body {
  font-family: sans-serif;
  background: #121212;
  color: #f4f4f4;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

/* Container remains clear over the background */
.container {
  text-align: center;
  background: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.6);
  z-index: 1;
  backdrop-filter: blur(6px);
}

#excuse-box {
  margin: 1rem 0;
  padding: 1rem;
  font-size: 1.5rem;
  color: #f0f0f0;
  border: 2px dashed #aaa;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(4px);
}

button {
  padding: 0.8rem 1.2rem;
  margin: 0.3rem;
  font-size: 1rem;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
button:hover {
  background-color: #005fa3;
}

.toggle-container {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.toggle-container input[type="checkbox"] {
  transform: scale(1.2);
  margin-right: 0.5rem;
}
