.aberto {
    color: green;
    font-size: 24px;
    font-weight: bold;
    animation: piscar 1s infinite;
}

.fechado {
    color: red;
    font-size: 24px;
    font-weight: bold;
    animation: piscar 1s infinite;
}

@keyframes piscar {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Estilo para a página de configurações */
.wrap h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #333;
}

.form-table th {
    padding: 10px 20px;
    text-align: left;
}

.form-table td {
    padding: 10px;
    vertical-align: middle;
}

.form-table input[type="time"] {
    padding: 5px;
    font-size: 16px;
    width: 120px;
    margin-right: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.submit input[type="submit"] {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
}

.submit input[type="submit"]:hover {
    background-color: #45a049; /* Efeito de hover */
}

/* Estilos adicionais */
.form-table {
    width: 100%;
    margin-top: 20px;
}

.form-table td label {
    font-weight: normal;
}

/* Estilo para as células dos dias da semana */
.form-table th {
    background-color: #4CAF50;
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 10px;
}

/* Estilo de negrito para os rótulos de Abertura e Fechamento */
.form-table td div label {
    font-weight: bold;
}
