body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
  }
  
  /* Estilos para el header */
  header {
    background-color: #c21737; /* Color de fondo rojo */
    padding: 1rem 0;
  }
  
  header .logo img {
    width: 120px;
    height: auto;
  }
  
  header h1 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0;
    color: white;
  }
  
  /* Estilos para el menú de navegación */
  .nav-link {
    color: white !important; /* Color blanco para los enlaces */
    font-weight: 500;
    transition: color 0.3s ease;
  }
  
  .nav-link:hover {
    color: gray !important; /* Color más claro al hacer hover */
  }
  
  .dropdown-menu {
    background-color: #c21737; /* Fondo rojo para el submenú */
    border: none;
  }
  
  .dropdown-item {
    color: white !important; /* Color blanco para los elementos del submenú */
    transition: background-color 0.3s ease;
  }
  
  .dropdown-item:hover {
    background-color: #a5142d; /* Color más oscuro al hacer hover */
  }

 /*Columnas izq y derecha  */
  .columns{
   background-image: url('../img/Columna\ pag\ we\ seijuve.png');
   background-size: auto;
   background-position: center;
  }
  aside {
    border-right: 1px solid #ddd; /* Línea divisoria */
  }
  /* Estilos generales para el footer */
.footer {
  background-color: #343a40; /* Fondo oscuro */
  color: white;
}

.footer h4 {
  font-size: 1.1rem; /* Tamaño de fuente más pequeño para títulos */
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer p {
  font-size: 0.9rem; /* Tamaño de fuente más pequeño para párrafos */
  margin-bottom: 0.5rem;
}

.footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #c21737; /* Color rojo al hacer hover */
}

/* Estilos para los íconos de redes sociales */
.social-icons {
  font-size: 1.2rem; /* Tamaño de fuente más pequeño para íconos */
}

.social-icons a {
  margin-right: 0.75rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff!important; /* Color rojo al hacer hover */
}

.custom-dropdown {
  color: black; /* Texto blanco */
  border: none; /* Sin borde */
}

.filter-grafica  .dropdown-menu{
  background-color: gray;
}
.dropdown-menu {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Sombra para el menú */
}

.activities, .stats, .diary {
    margin-bottom: 20px;
}

.activities ul {
    list-style: none;
    padding: 0;
}

.activities ul li {
    background-color: #e2e2e2;
    margin: 5px 0;
    padding: 10px;
    border-left: 5px solid #333;
}

.navigation nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-around;
    background-color: #333;
    padding: 10px;
}

.navigation nav ul li a {
    color: #fff;
    text-decoration: none;
}

.stats {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stats div {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 20%;
}

.diary {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}