<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">header {
  position: fixed; /* Fijo en la pantalla */
  background-color: #fff;
  border-bottom: 1px solid #001d3d32;
  left: 0;
  top: 0;
  width:100%;
  padding: 10px 3%; /* AÃ±adido padding vertical */
  display: flex; /* Activa Flexbox */
  justify-content: space-between; /* Separa los elementos a los extremos */
  align-items: center; /* Centra verticalmente los elementos */
  z-index: 1000; /* Para que estÃ© por encima de otros elementos */
  box-sizing: border-box; /* Â¡Importante! Evita que el padding afecte el ancho */
}

header .button-container {
  display: flex;
  background-color: #001d3d;
  width: 250px;
  height: 40px;
  align-items: center;
  justify-content: space-around;
  border-radius: 10px;
}

header .button {
  outline: 0 !important;
  border: 0 !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all ease-in-out 0.3s;
  cursor: pointer;
}

header .button:hover {
  transform: translateY(-3px);
}

header .icon {
  font-size: 20px;
}

body {
  background-color: #EBF4FF;
  margin: 0;
  padding: 0;
}

.bodyDashboard{
  margin-top: 3%;
}

.bodyDashboard h1, .bodyDashboard h2{
  font-family: Anton;
  text-transform: uppercase;
  color: #001D3D;
}

/* aside */

.bodyDashboard a{
  font-family: Arial, Helvetica, sans-serif;
  color: #001D3D;
}

.sidebarDashboard {
  padding: 1%;
  width: 15%;
  background-color: #fff;
  position: fixed;
  height: 100%;
  border-right: 1px solid #001d3d13;
  padding-left: 1%;
  left: 0; /* AsegÃºrate que estÃ© pegado a la izquierda */
  box-sizing: border-box; /* Esto asegura que el padding no aumente el ancho total */

}

.sidebarDashboard, 
.sidebarDashboard h2, 
.sidebarDashboard ul {
  font-family: Arial, Helvetica, sans-serif;
  color: #001D3D;
  list-style: none;
  padding-left: 0; /* Elimina el padding izquierdo por defecto */
}

/* Espaciado entre elementos del menÃº */
.sidebarDashboard ul li {
  margin-bottom: 1%; /* Espacio vertical entre items */
}

.sidebarDashboard ul li a {
  padding: 10px 15px; /* Espacio interno en cada item */
  display: block;
  text-decoration: none;
  color: #001D3D;
  border-radius: 4px; /* Opcional: bordes redondeados */
  transition: background 0.3s ease; /* Efecto hover suave */
}

.sidebarDashboard ul li a:hover {
  background-color: #EBF4FF; /* Color de fondo al pasar el mouse */
}

.sidebarDashboard a {
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  color: #001D3D;
}

.logolayout{
  height:5vh;
}

.mainSidebar {
  height: 70vh;
}

.footerSidebar{
  height:25vh;
}

/* main */

.contentDashboard {
  margin-left: 20%;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 0.5%;
  padding-bottom: 5%;
  height: 100%;
}

.headerDash{
  height: 2%;
}

.contentDash{
  height: 98%;
}

.strategicPlan, .nextActivities, .Trends {
  color: #001D3D;    
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  text-align: center;
  display: inline-block;
  padding: 3%;
  width: 24%; /* Asegura que todos los elementos tienen el mismo ancho */
  margin: 1%;
  height: 30%;
  border-radius: 10px;
  border: 1px solid #001d3d42;
}

.dailyAgenda {
  color: #001D3D;   
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  padding: 3%;
  height: 70%;
  margin: 1%;
  margin-right: 4%;
  border-radius: 10px;
  border: 1px solid #001d3d42;
}


.strategicPlan button, .nextActivities button, .Trends button, .dailyAgenda button {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #001D3D;
  border-radius: 30px;
  padding: 8px;
  padding-left: 3%;
  padding-right: 3%;
  margin: 1%;
}

.strategicPlan button:hover, .nextActivities button:hover, .Trends button:hover, .dailyAgenda button:hover  {
  color: #001D3D;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #fff;
  border-radius: 30px;
  border-style: solid;
  border-width: 1px;
  border-color: #001D3D;
  padding: 8px;
  padding-left: 3%;
  padding-right: 3%;
  margin: 1%;
}</pre></body></html>