<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Estilo bÃ¡sico para el body */
body {
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    font: normal 16px/1.5;
    font-family: Arial, sans-serif;
    background: #f1f1f1;
}

/* Estilo principal del header */
header {
    background-color: #282c34;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    color: white;
    position: relative;
}

/* Lado izquierdo del header */
.left-header,
.right-header {
    display: flex;
    align-items: center;
}

/* Lado derecho (nuevo) */
.right-header {
    justify-content: flex-end;
    width: auto;
    position: relative;
}

/*Ocultar la vista del logo derecho*/
.oculto{
    visibility: hidden; /* Oculta el contenido visualmente */
    pointer-events: none; /* Desactiva la interacciÃ³n */
}

/* Contenedor del Ã­cono de usuario */
.user-icon-container {
    background-color: #444;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.user-icon {
    width: 30px;
    height: 30px;
}

/* MenÃº desplegable de usuario */
.user-menu {
    display: none;
    position: absolute;
    top: 60px;
    right: 10px;
    background-color: #333;
    border-radius: 5px;
    padding: 10px;
    color: white;
    z-index: 10;
    width: 200px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.user-menu.active {
    display: block;
}

/* BotÃ³n de cerrar sesiÃ³n */
.logout-btn {
    background-color: #d9534f;
    border: none;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}

.logout-btn:hover {
    background-color: #c9302c;
}

/* Estilo del tÃ­tulo centrado */
.page-title {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    margin: 0;
    font-size: 1.8em;
    font-weight: bold;
    color: white;
    z-index: 1; /* Asegura que estÃ© sobre otros elementos */
}

/* Estilo del logo */
.logo {
    max-width: 12em;
    margin-left: 0.5em;
}

/* Ãcono del menÃº hamburguesa */
.menu-icon {
    font-size: 30px;
    width: 50px;
    text-align: center;
    cursor: pointer;
    color: white;
}

/* Ocultar la secciÃ³n de usuario si no hay sesiÃ³n activa 
.right-header .user-icon-container,
.right-header .user-menu {
    display: none;
}*/

/* Si hay sesiÃ³n iniciada, mostrar */
.sesion-activa .user-icon-container,
.sesion-activa .user-menu {
    display: block;
}

/* Responsivo: Cambiar el logo en mÃ³viles */
@media (max-width: 768px) {
    #main-logo{
        content: url("logo_mobile.png"); /* Cambia al logo para mÃ³viles */
        max-width: 4em;
    }
    /*#user-icon {
        content: url("logo_mobile.png");  Cambia al logo para mÃ³viles 
        max-width: 4em;
    }*/
}


/* Responsive */
@media (max-width: 768px) {
    .page-title {
        text-align: center;
        font-size: 1.5em;
    }

    .logo {
        max-width: 10em;
    }
}

/* Responsividad para las pÃ¡ginas de login y registro */
@media (max-width: 768px) {
    .containerlogin {
        padding: 20px;
    }

    .card {
        margin: 0 auto;
        width: 100%; /* Asegura que ocupe el ancho disponible */
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Opcional: aÃ±ade sombra para resaltar */
    }

    .card-header h3 {
        font-size: 1.5em;
    }

    .form-label {
        font-size: 1em;
    }

    .form-control {
        font-size: 1em;
        padding: 10px;
    }

    .btn-primary {
        font-size: 1em;
        padding: 12px;
    }

    .text-center a {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .containerlogin {
        padding: 10px;
    }

    .card {
        width: 100%;
        border-radius: 10px; /* Bordes mÃ¡s suaves para dispositivos pequeÃ±os */
    }

    .btn-primary {
        font-size: 0.9em;
    }

    .text-center a {
        font-size: 0.8em;
    }
}


/*----------------------menu hamburguesa---------------------*/
/* Estilo para el Ã­cono de menÃº */
.menu-icon {
    font-size: 30px;
    cursor: pointer;
    top: 10px;
    left: 10px;
    z-index: 10;
    color: white;
}

/* Estilo de la barra lateral */
.sidebar {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    overflow-x: hidden;
    transition: 0.3s;
    padding-top: 60px;
    z-index: 9;
    text-align: center;
}

/* Activar el menÃº lateral */
.sidebar.active {
    width: 17em;  /* MenÃº abierto */
}

/* Enlaces de la barra lateral */
.sidebar a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 20px;
    color: white;
    display: block;
    transition: 0.3s;
}

/* Efecto de hover para enlaces */
.sidebar a:hover {
    background-color: #575757;
}

/* BotÃ³n de cierre en la parte superior 
.sidebar .closebtn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 30px;
    cursor: pointer;
    color: white;
}*/

.sidebar-logo{
    margin-top: 1em;
    height: 5em;
}


/*-----------tabla de temps --------------*/

table {
    border-collapse: collapse;
    width: 80%;
    margin: auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

th, td {
    padding: 15px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #4CAF50;
    color: white;
}

tr:hover {
    background-color: #f0f0f0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}

.under{
    text-align: center;
}
/*---------------Grafico------------------------*/

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
}

.grafico {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 720px) {
    .container {
        grid-template-columns: 1fr;
    }
}

canvas {
    width: 100% !important;
    height: 100% !important;
}  
</pre></body></html>