body {
  font-family: Arial, sans-serif;
  background-color: #ded1c1;
  height: 100vh;
  color: #333;
}
.header{
  background: #333;
  color: #ded1c1; 
  margin-bottom: 2rem;
  border-bottom: #35dbe3 solid 8px;
}
.turkey{
  height: 100%;
  min-height: 60vh;
  background-image: url("/images/turkey.jpg");
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: contain;
}
.callout{
  border: #ff7431 8px solid;
  border-radius: 1rem;
}

h1, h2 {
  text-align: center;
}

select, input {
  width: 100%;
  padding: 8px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.button {
  background-color: #ff7431;
  color: white;
}

.button:focus, .button:hover {
  background-color: #F08651;
}

option:disabled {
  color: grey;
}

#message, #shirt-message {
  color: #36846b;
  font-weight: bold;
  text-align: center;
}

/* Custom Styles for Hidden Elements */
.hidden-content {
  background-color: #000;
  color: #000;
  padding: 5px;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
  display: inline-block;
}
.hidden-content.revealed {
  background-color: #333;
  color: #fff;
  font-weight:bolder;
  text-decoration:underline;
  text-decoration-color:#35dbe3;
  cursor:default;
}
/* Pointer cursor for clickable areas */
.hidden-content:not(.revealed):hover {
  background-color: #333;
  color: #fff;
  cursor: pointer;
}
