/* General body styling */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #363636;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

/* Main container for the application */
.container {
  text-align: center;
  background-color: #363636;
  width: 100%;
  max-width: 600px;
}

/* Header styling */
header h1 {
  margin-bottom: 20px;
}

header .zapps {
  color: #016420;
  font-weight: 700;
}

header .quiz {
  color: #016420;
  font-weight: 300;
}

/* Product card styling */
.card {
  background-color: #1a1a1a;
  display: inline-block;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.product-img {
  width: 250px;
  border-radius: 5px;
}

.product-title {
  margin-top: 8px;
  font-size: 14px;
  color: #ffffff;
}

/* Guess information styling */
.guess-info {
  margin: 15px 0;
  font-weight: 500;
}

/* Guesses container styling */
.guesses {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

/* Individual guess box styling */
.guess-box {
  background-color: #a7a7a7;
  width: 250px;
  height: 24px;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #000000;
}

/* Guess form styling */
.guess-form {
  margin-top: 15px;
}

.guess-form input {
  background-color: #bebebe;
  border: none;
  color: #000000;
  padding: 8px;
  width: 180px;
  border-radius: 3px;
  -moz-appearance: textfield;
}

/* Hide arrows from number input */
.guess-form input::-webkit-outer-spin-button,
.guess-form input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.guess-form button {
  background-color: #016420;
  border: none;
  color: white;
  padding: 8px 12px;
  margin-left: 6px;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.2s;
}

.guess-form button:hover {
  background-color: #02922f;
}

/* Currency icon styling */
.currency-icon {
  height: 1em;
  vertical-align: middle;
}

/* Footer styling */
footer {
  margin-top: 20px;
  font-size: 12px;
}

footer a {
  text-decoration: none;
  color: #02922f;
}

footer a:hover {
  color: #00ff51;
}
