/* Hier können individuelle css-Einstellungen für das Frontend vorgenommen werden */

@media screen {
    #nurdruck  {
        display: none;
        }


/* Anpassung für extra große Displays (Grosse Laptops und Desktops, 1200px und mehr) */
    @media only screen and (min-width: 1400px) {

        #kalender, #footer, #myModal, #screenonly { 
            transform: scale(1.5) !important; 
            margin-top: 190px;
        }

        #screenonly {
            font-size: 2em;
        }

        #footer, #myModal {
            width: unset !important;
        }
        .modal-content {
            top: 50px;
            max-height: calc(70vh - 125px);
            overflow-y: auto;
        }
}