/* Hide mobile view on desktop */
@media (min-width: 1024px) {
  .mobile-cal { display: none; }
}

/* Hide desktop view on mobile */
@media (max-width: 1023px) {
  .desktop-cal { display: none; }
}

/* Ensure iframe fits container */
.calendar-container iframe {
  width: 100%;
  height: 1200px; /* Adjust height as needed */
}
