:root {
    --primary-color: hwb(346.3 43.1% 43.1%)
}


body {
    color: #000000;
    background-color: hwb(116.8 73.3% 19.2%);
}

.full-screen {
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    box-sizing: border-box;
}

img,
div {
    max-width: 100%;
}

/* tables */

table {
    width: 100%;
    border-collapse: collapse;
}

td {
    text-align: justify;
    word-spacing: -2px;
    padding-bottom: 1rem;
}

/* schedule */

#schedule {
    padding: 3rem 1.5rem 3rem 1.5rem;
}

.schedule-time {
    font-weight: bold;
    min-width: 120px;
    padding-right: 2rem;
}

/* transport */

td.transport {
    min-width: 140px;
    padding-right: 2rem;
}

/* small screen sizes*/

@media (max-width: 600px) {
    body {
        padding: 16px;
        background-clip: padding-box;
    }

    .w3-content {
        font-size: 14px;
    }

    td.transport {
        min-width: 80px;
        padding-right: 2rem;
    }
}

/* adjustments of template classes */

.w3-content {
    font-size: 15px;
    max-width:700px;
    text-align: justify;
}

.w3-ul {
    margin: 2rem 2rem;
    list-style-type: disc;
}

.w3-tag {
    margin: 2rem 2rem;
    background-color: var(--primary-color);
}

.w3-button {
    background-color: var(--primary-color);
    color: white;
}

.w3-card {
    border: dotted;
}

.w3-greyscale-min {
    filter: grayscale(30%)
}

/* form */

.form-radio {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.form-radio label {
    margin-right: 10px;
}

/* maps container*/

.map-container {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* loading spinner */

.spinner {
    display: none;
    width: 24px;
    height: 24px;
    border: 3px solid #ddd;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}