body,
html {

  margin: 0;
  padding: 0;
  background: #f5f5f5;
}

body {
  font-family: Arial, sans-serif;
}

.container {
  
  display: flex;
  height: 100vw;
}

/*Menu lateral*/
.menuLateral {

  width: 20%;
  background: #fff;
  color: #333;
  position: fixed;
  min-height: 100%;
}

.contendedorOpcionesMenu {

  display: flex;
  align-items: center;
  color: #333;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
  font-size: 15px;
  margin-top: 10px;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.contendedorOpcionesMenu img {

  width: 20px;
  height: 20px;
  margin-right: 10px;
  transition: filter 0.3s, transform 0.3s;
}

.contendedorOpcionesMenu:hover {
  background: #f11212;
  border-right: 4px #3498db solid;
  border-radius: 0px;
  color: #fff;
}

.active {
  background: #f11212;
  border-right: 4px #3498db solid;
  border-radius: 0px;
  color: #fff;

}

.active img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
  transition: filter 0.3s, transform 0.3s;

}

.contendedorOpcionesMenu .active img,
.contendedorOpcionesMenu:hover img {
  filter: brightness(0) invert(1);
  transform: scale(1.1);
  transition: filter 0.3s, transform 0.3s;
}


.logo {
  text-align: center;
  padding: 30px;
  background: linear-gradient(to bottom, #ec3c29, #a11e0f);
  color: #fff;
  font-size: 26px;
}

.logout {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  font-weight: bold;
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 7px;
  width: 80%;
  text-align: center;
}

.logout:hover {
  background: #7e1d12;
}

/*Contenido principal*/
.mainContent {
  width: 75%;
  padding: 20px;
  background: #f5f5f5;
  position: absolute;
  right: 10px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 10px;
  border-radius: 10px;
}

.profile {
  display: flex;
  align-items: center;
}

.profile span {
  margin-right: 10px;
}

.profilePicture {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 50%;
  border: 2px #e74c3c solid;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profilePicture img {

  width: 20px;
  height: 20px;
}

.datosInfo {

  padding: 10px;
  color: #333;
  font-weight: bold;
  font-size: 17px;
}

.dataList {
  margin-top: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);

}