/* Ensure the iframe is responsive */
.flipbook-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Aspect ratio 16:9 */
}

.flipbook-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

#scheduleText{
    background-color: gold;
    font-size: 20px;
    width: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-align: center;
    border-color: gold;
    color: black;
    padding: 5px;
}

/* Media query for screens 768px wide or less (tablets and phones) */
@media (max-width: 768px) {
    .flipbook-container {
        height: 700px;
        /* Increase height for mobile */
    }
}