/* General page styles */
body {
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
  background: linear-gradient(135deg, orange, darkorange);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Center quote container */
.container {
  background-color: white;
  padding: 35px 40px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

/* Quote text */
#quote {
  font-size: 1.6rem;
  color: orange;
  margin-bottom: 20px;
  min-height: 90px;
  position: relative;
  line-height: 1.4;
}

#quote::before {
  content: '“';
  font-size: 3.5rem;
  position: absolute;
  left: -25px;
  top: -15px;
  color: orange;
}

/* Author text */
#author {
  font-size: 1rem;
  color: darkorange;
  text-align: right;
  margin-bottom: 25px;
  font-style: italic;
}

/* Buttons */
button {
  background-color: orange;
  color: white;
  border: none;
  padding: 10px 22px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.2s ease, transform 0.1s ease;
}

button:hover {
  background-color: darkorange;
  transform: translateY(-1px);
}

/* Add quote form */
#add-quote-form {
  margin-top: 20px;
}

#add-quote-form input {
  width: 100%;
  padding: 8px 10px;
  margin-bottom: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 0.9rem;
}

/* Auto-play */
label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 0.9rem;
  color: orange;
}

#autoStatus {
  font-size: 0.85rem;
  color: darkorange;
  margin-top: 8px;
}
