/*
Theme Name: DDISPLAY - Raster 1
Theme URI: https://www.dusties.ch
Author: Nico Staub / DUSTIES
Author URI: https://www.dusties.ch
Description: Digital Signage Theme.
Version: 1.0
*/





/* Allgemeine Stile */

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    height: 1080px; /* Fixe Höhe */
    width: 1920px; /* Fixe Breite */
    overflow: hidden; /* Scrollbalken ausblenden */


}




/* Header*/

.header {
    width: 100%;
    height: 180px;
    color: #fff;
    position: absolute;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header .box {
    width: 1650px;
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 5px;
    line-height: 0.8;
    margin-left: 25px;
}



/* UHR */

.clock-container {
    width: 180px;
    height: 180px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 5px;
/*  background-color: #000; */
/*  border: 1px solid #fff; */

}




/* FOOTER */

.footer {
    width: 100%;
    height: 115px;
    color: #000;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .box {
    width: 1840px;
    height: 90px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 5px;
    margin-bottom: 10px;
    line-height: 0.8;
}


/* Hauptbereich */

.main {
    margin: 180px 0;
    padding: 0 20px;
    display: flex;
    background-color: <?php echo get_theme_mod('main_background_color'); ?>;

}



.column {
    flex: 1;
    padding: 15px;
    margin: 10px;
    border-radius: 10px;
    height: 735px; 
    line-height:130%;
    font-size: 20px; 

 /* Rahmen anzeigen/ausblenden basierend auf Benutzereinstellungen */
    border: <?php echo get_theme_mod('show_column_border', false) ? '1px solid black' : 'none'; ?>;

}

.column img {
    max-width: 100%;
    height: auto;
}




