/* calendar.css for From Zero to Zeta */

#calendar {
  margin-top: 2rem;
  background-color: #f8f8f8;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

iframe {
  width: 100%;
  height: 600px;
  border: 0;
  max-width: 100%;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

button {
  background-color: var(--accent-color);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  margin-bottom: 1rem;
}

button:hover {
  background-color: #3a0066;
}

@media (max-width: 600px) {
  iframe {
    height: 500px;
  }
}
