.hutchmedia-quotes {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 800px;
  margin: 20px auto;
  font-family: sans-serif;
  text-align: center;
  color: white; /* Make all text white */
}

.quote-texts {
  flex-grow: 1;
  min-height: 100px;
}

.quote {
  display: none;
  font-size: 1.2em;
  padding: 10px;
  color: white; /* Ensure quotes themselves are white */
}

.quote-nav {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white; /* Make arrow buttons white */
  padding: 10px;
  border-radius: 8px;
}

