/*
Theme Name: Digital Signage Theme
Theme URI: http://example.com/
Author: Seu Nome
Author URI: http://example.com/
Description: Um tema minimalista para Digital Signage.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: minimalista, sem-sidebar, sem-navegação
Text Domain: digital-signage-theme
*/

html, body {
    margin: -200;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
}

body {
    display: flex;
    flex-direction: column;
}

header, footer {
    background-color: #111;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    flex: 0 0 auto;
}

.content {
    flex: 1 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: calc(100vh - 40px); /* Adjust this based on header/footer height */
}
