body {
  font-family: 'Arial', sans-serif;
  padding: 20px;
  max-width: 600px;
  margin: auto;
  background: #f0f0f0;
}

h1 {
  font-family: 'Titan One', cursive;
  font-size: 2.5em;
  margin-bottom: 20px;
}

textarea {
  width: 100%;
  height: 120px;
  font-size: 1.1em;
  margin-bottom: 10px;
  border-radius: 12px;
  border: none;
  padding: 10px;
  font-family: 'Titan One', cursive;
  background-color: #d0e8ff;
  color: #004a99;
  resize: vertical;
}

select, button {
  padding: 10px 15px;
  font-size: 1.1em;
  border-radius: 12px;
  border: none;
  font-family: 'Titan One', cursive;
  background-color: #4cafef;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 10px;
}

select:hover, button:hover:not(:disabled) {
  background-color: #3a9ad9;
}

button:disabled {
  background-color: #999;
  cursor: not-allowed;
}

audio {
  margin-top: 20px;
  width: 100%;
  outline: none;
  border-radius: 12px;
  background-color: #d0e8ff;
}

/* Hide default file input */
#fileInput {
  display: none;
}

/* Styled label for file input */
#fileLabel {
  display: inline-block;
  padding: 10px 20px;
  background-color: #4cafef;
  color: white;
  font-family: 'Titan One', cursive;
  font-size: 1.1em;
  border-radius: 12px;
  cursor: pointer;
  user-select: none;
  margin-bottom: 10px;
  transition: background-color 0.3s ease;
}

#fileLabel:hover,
#fileLabel:focus {
  background-color: #3a9ad9;
  outline: none;
}
