/*////////////////////////////////////////////////////////////////////
// Copyright 2025 (c) Yanko Lemoine
//
// This program and the accompanying materials are made
// available under the terms of the Eclipse Public License 2.0
// which is available at https://www.eclipse.org/legal/epl-2.0/
//
// SPDX-License-Identifier: EPL-2.0
////////////////////////////////////////////////////////////////////*/

#schedule {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

#schedule table {
    width: 60%;
    margin: 0 auto;
}

#map iframe {
        width: 80vw;
        height: 80vh;
        border-radius: 50px;
        box-shadow: 0px 0px 30px rgb(55, 62, 64);
    }

@media screen and (max-width: 680px) {
    #schedule {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    #schedule table {
        width: 100%;
        margin: 0 auto;
        td, th {
            font-size: x-large;
        }
    }

    #map iframe {
        width: 100%;
        height: 400px;
        border-radius: 10px;
        box-shadow: 0px 0px 30px rgb(55, 62, 64);
    } 
}