/*
Theme Name: DDISPLAY 2
Theme URI: https://www.dusties.ch
Author: Nico Staub / DUSTIES
Author URI: https://www.dusties.ch
Description: Digital Signage Theme. Benötigt das zugehörige Plugin
Version: 1.0
*/





/* Allgemeine Stile */

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
    font-size: 28px;  /* Basis-Schriftgröße */
    height: 1080px; /* Fixe Höhe */
    width: 1920px; /* Fixe Breite */
    overflow: hidden; /* Scrollbalken ausblenden */
    background-color: #000;

}




/* 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;
}



/* UHR */

.clock-container {
    width: 150px;
    height: 120px;
    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: 700px;
    height: 115px;
    color: #000;
    position: absolute;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer .box {
    width: 650px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin: 5px;
    margin-bottom: 10px; /* Fügt Abstand vom unteren Rand hinzu */
}


/* Hauptbereich */

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

}



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

}



.c1 {

    padding: 1px 15px 15px; /* top-right-bottom-left */
    margin: 5px 10px 10px;
    border-radius: 10px;
    height: 200px;
    width: 550px;

}

.c1 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}




.c2 {

    padding: 1px 15px 15px; /* top-right-bottom-left */
    margin: 5px 10px 10px;
    border-radius: 10px;
    height: 610px;
    width: 550px;
}

.c2 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}




.c3 {

    padding: 1px 15px 15px; /* top-right-bottom-left */
    margin: 5px 10px 10px;
    border-radius: 10px;
    height: 840px;
    width: 1300px;
}

.c3 img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}