/* Variables globales */
:root {
    /* --primary-color: #3498db;
    --secondary-color: #2c3e50;
    --accent-color: #e74c3c;
    --light-color: #ecf0f1;
    --dark-color: #2c3e50;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --text-color: #333;
    --sidebar-width: 200px; */
    --header-height: 80px;
}
html, body, #viewDiv{
	padding: 0;
    margin: 0;
    height: 100%;
    width: 100%;   
}

/* Encabezado */
header {
    background-color: var(--primary-color);
    color: rgb(31, 10, 221);
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    font-size: 1.4rem;
    font-weight: 500;
}

.time-control {
    font-size: 0.9rem;
    opacity: 0.;
}



