/* Basic Reset and Styling */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: url(hd-bckg.png) #1d252b right center no-repeat;
    color: white;
    padding: 0;
	border-bottom: 1px solid #ffd401;
	height: 82px;
}

header h1{
	float: left;
	padding-top: 1rem;
	margin-left: 100px;
}

header #logoGB{
	display: block;
	background: url(LogoGBAncho_1.png) #1d252b left center no-repeat;
	width: 0;
	height: 80px;
	padding-left: 170px;
	margin: 0;
	float: left;
	overflow: hidden;
}
header #logoCSIC{
	display: block;
	background: url(CSIC-Logotipo-ROJO.png) left center no-repeat;
	width: 0;
	height: 80px;
	padding-left: 205px;
	margin: 0;
	float: left;
	overflow: hidden;
}

/* Menu Button Styles */
.menu-toggle {
    background: #273238;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    display: none; /* Hide by default, shown in responsive */
}

/* Menu Styles */
.menu {
    background: #273238;
	height: 1.7em;
}

.menu ul {
    list-style: none;
    padding: 0;
}

.menu li {
    display: inline;
    margin-right: 15px;
}

.menu a {
    color: white;
    text-decoration: none;
    padding: 2px 10px;
}

.menu a.selected {
	color: #ffd401;
	border-bottom: 3px solid #ffd401;
}

/* Breadcrumbs Styles */
.breadcrumbs {
    margin-bottom: 20px;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 8px;
    font-size: 0.9rem;
}

.breadcrumbs a {
    color: #b72c36;
    text-decoration: none;
}

.breadcrumbs span {
    color: #666; /* Different color for the current page */
}

/* Main Content Styles */
.content {
    display: grid;
    grid-template-columns: 1fr 3fr 2fr; /* Three columns */
    gap: 20px; /* Space between columns */
    padding: 20px;
}

/* Column Styles */
.right-column {
	border-radius: 8px;
    background: #f4f4f4;
    padding: 20px;
}

.main-column {
    background: #fff;
    padding: 0 20px 20px 20px;
}

/* Footer Styles */
footer {
    background: #273238;
    color: white;
    text-align: center;
    padding: 1rem 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        font-size: 16px; /* Base font size for easy reading */
    }
	
    .menu li {
        display: block; /* Stack menu items vertically */
        margin: 10px 0;
    }
    
    .menu-toggle {
        display: block; /* Show menu button */
        width: 100%; /* Full width for easy tapping */
    }
    
    .menu {
        display: none; /* Hide the menu by default */
        width: 100%; /* Full width */
		height: auto !important;
    }

    .content {
        grid-template-columns: 1fr; /* Stack all columns */
    }
    
    .breadcrumbs {
        font-size: 1rem; /* Slightly larger font for breadcrumbs */
    }
    
    .right-column {
        display: none; /* Hide sidebars on mobile */
    }
	
	.left-column{
        
    }
}

/* Show menu when active */
.menu.active {
    display: block; /* Show menu when active */
}

.main-column ul{
	margin-left: 20px;
	font-size: 0.9em;
}

ul.config {
	border: 1px solid black;
	padding: 10px 10px 10px 30px;
	background-color: aliceblue;
}

/* Importar la fuente Barlow desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;600&amp;display=swap');

/* Estilo general del menú */
.menuLateral ul {
  list-style: none; /* Elimina los puntos de la lista */
  margin: 0;
  padding: 0;
  background-color: #8f1e27; /* Fondo oscuro basado en #b72c36 */
  border: 1px solid #70161d; /* Borde más oscuro */
  border-radius: 5px; /* Esquinas redondeadas */
  overflow: hidden; /* Asegura que no sobresalgan elementos */
  font-family: 'Barlow', sans-serif; /* Fuente Barlow */
  width: 100%; /* El menú ocupa todo el ancho del contenedor */
}

/* Elementos de la lista */
.menuLateral ul li {
  display: block; /* Los elementos están en bloque para ocupar todo el ancho */
  width: 100%; /* Ocupan todo el ancho del contenedor */
}

/* Enlaces del menú */
.menuLateral ul li a {
  display: block;
  padding: 15px 20px; /* Espaciado interno */
  text-decoration: none; /* Quita el subrayado */
  color: #ffffff; /* Texto completamente blanco */
  font-size: 16px;
  font-weight: 600; /* Negrita moderada */
  text-align: left; /* Alinear el texto a la izquierda */
  transition: background-color 0.3s ease; /* Animación para hover */
  background-color: #8f1e27; /* Fondo oscuro predeterminado */
}

/* Hover en los enlaces */
.menuLateral ul li a:hover {
  background-color: #b72c36; /* Fondo rojo principal en hover */
}

/* Enlace seleccionado */
.menuLateral ul li a.selected {
  background-color: #70161d; /* Fondo más oscuro para destacar */
  font-weight: bold; /* Negrita adicional */
  cursor: default; /* Indica que no es clickeable */
}

p{
	margin: 1em 0;
}

h1, h2, h3{
	font-family: 'Barlow', sans-serif; /* Fuente Barlow */
}
.gb-autores{
	font-size: 0.9em;
}
.gb-autores td{
	white-space: nowrap;
}
.gb-autores th.gb-h-orcid_url{
	
}

.gb-au-nombre{
	font-weight: bold;
	font-size: 2em;
	border-bottom: 2px solid black;
	margin-bottom: 10px;
}

.gb-separador{
	border: 1px solid #ccc;
	margin: 10px 0;
}

dl dt{
	font-weight: bold !important;
}
dl dd{
	padding-left: 20px;
}

.destacado{
	font-weight: bold !important;
}

.enlace-codepen{
	font-size: 0.7em;
	padding: 2px 10px 0 10px;
	clear: both;
	color: black;
	text-decoration: none;
	display: block;
	float: right;
	border: 1px solid gray;
	border-radius: 10px;
	background-color: white;
}



html{
  font-family: Montserrat, sans-serif;
}
.dgNumPubs{
  float: left;
  width: 200px;
  text-align: center;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #333;
}
.indicador{
  margin: auto;
  display: inline-block;
  border: 1px solid #dfdfdf;
  border-radius: 50%;
  width: 75px;
  height: 75px;
  line-height: 75px;
  text-align: center;
  background: #dfdfdf !important;
  vertical-align: center;
  transition: all .5s ease-in-out;
  font-size: 20px;
  box-sizing: border-box;
  cursor: pointer;
  text-decoration: none;
  color: #333 !important;
}
.indicador:hover{
    background: #af071f !important;
    color: #fff !important;
}
.indicadorOut{
  font-size: 0;
  background: white;
  border: 2px solid #d1d1d1;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
  margin: 20px auto;
  transition: all .5s ease-in-out;
}
.indicadorOut:hover{
  border: 2px solid #af071f;
}
.txtIndicador{
  font-size: 16px !important;
  text-decoration: none !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  margin: 20px auto;
  font-style: normal;
  font-weight: 900;
  line-height: 18px !important;
  cursor: pointer;
}

.salto{
	clear: both;
	display: block;
}