@import url('lato.css');

body {
  font-family: 'Lato', Calibri, Arial, sans-serif;
  background: #fff;
  font-weight: 400;
  font-size: 100%;
  color: #333;
  height: 100%;
}

.container {
  display: flex;
}

.menu-panel {
  background: #f1103a;
  width: 20%;
  height: 100%;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  overflow-y: scroll;
}

.menu-toc {
  padding: 10px;
}

.menu-toc p {
  margin: 5px 0;
}

.menu-toc a {
  display: block;
  color: #fff !important; /* Enlace blanco */
  font-size: 1.1em;
  line-height: 20px;
  padding: 2px 20px;
  cursor: pointer;
  background: #f1103a;
  border-bottom: 1px solid #dd1338;
  text-decoration: none;
}

.menu-toc a:hover {
  color: #000 !important; /* Hover negro */
}

.bb-custom-wrapper a {
  color: #ff0000 !important; /* Enlace rojo */
  text-decoration: none;
}

.bb-custom-wrapper a:hover {
  color: #000 !important; /* Hover negro */
}

#contenido-articulo {
  border: 1px solid #ccc;
  padding: 20px;
  background: #fff;
  width: 79%;
}

/* 📌 Estilos generales de los botones de navegación */
.nav-btn {
  position: fixed !important;
  top: 40px; /* 📌 Flechas en la parte superior */
  background: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  font-size: 24px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 1000;
  border-radius: 50%;
  transition: background 0.3s ease-in-out;
}

.nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.navigation-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px; /* Espacio entre botones */
  margin-bottom: 20px; /* Espacio inferior */
}

.cargar-articulo.activo {
  /*background-color: #fff;  /* Fondo claro para destacarlo */
  color: #f1ff00 !important; /* Texto rojo como el fondo original */
  /*font-weight: bold;*/
  border-left: 4px solid #fff; /* Pequeño acento visual */
}

.content h2 {
    font-weight: 400 !important;
    font-size: 3em !important;
    padding: 0 0 10px !important;
    color: #333 !important;
    margin: 0 1% 40px !important;
    text-align: left !important;
    box-shadow: 0 10px 0 rgba(0,0,0,0.02) !important;
    text-shadow: 3px 3px 2px #bfb9b9 !important;
}
