html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background-image: url('/static/images/background.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'Arial', sans-serif;
}

.box {
  background-color: #15161b !important;
}

/* Apply dark mode styles to the entire document */
body {
  background-color: #121212;
  color: #ffffff;
  font-family: sans-serif;
}

.tag {
  background-color: #1f2328 !important;
}

/* Center content vertically and horizontally */
.fullscreen-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* Add semi-transparent box for readability */
.card-box {
  box-shadow: 0 0 20px rgba(0,0,0,0.2);
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 1rem;
  border-radius: 12px;
}

/* Guessed result box */
.result-box {
  color: white;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  animation: fadeIn 0.3s ease-out;
  word-break: break-word;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.box .columns .column {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-width: 100px;
}

.box .columns .column p {
  margin: 0.25rem 0;
  width: 100%;
  text-align: center;
}

.box .columns .column p.tag {
  font-size: 0.8rem;
  padding: 0.75rem 1.25rem;
  width: 100%;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.stat-box {
  flex: 1 1 calc(25% - 1rem);
  background-color: #2a2a2a;
  color: white;
  width: 120px;
  height: 120px;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0.5rem;
}

.stat-icon {
  font-size: 1.8rem;
  margin-bottom: 0.3rem;
}

.stat-value {
  font-weight: bold;
  font-size: 1rem;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: break-word;
  max-width: 100%;
}

.sticky-form {
  background-color: black;
  position: sticky;
  top: 0;
  z-index: 999;

}