

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.calendar-container {
    width: 100%;
    max-width: 1000px;
    padding: 20px;
}

.calendar-container iframe {
    width: 100%;
    height: 800px;
    border: none;
}

/* Media queries pro mobilní zařízení */
@media (max-width: 600px) {
    .calendar-container iframe {
        height: 600px; /* Snižte výšku na mobilních zařízeních */
    }
}