/* Estilo para a Tela da TV (Fundo Branco) */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #ffffff;
    color: #1c1c1e;
    margin: 0;
    padding-bottom: 80px; /* Espaço para o rodapé fixo */
}
.tv-header {
    text-align: center;
    padding: 20px;
    border-bottom: 1px solid #e9ecef;
}
.logo {
    height: 50px;
}
.main-container {
    padding: 20px;
}
.production-line {
    font-size: 28px; /* Fonte grande para ser lida de longe */
    padding: 15px 10px;
    border-bottom: 1px solid #e9ecef;
}
.production-line.urgent {
    font-weight: bold;
    color: #d9534f; /* Destaque em vermelho para urgência */
}
.tv-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1c1c1e;
    color: white;
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 50px;
}
.footer-counter h2 {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    color: #aaa;
    text-transform: uppercase;
}
.footer-counter p {
    margin: 5px 0 0 0;
    font-size: 32px;
    font-weight: bold;
}