

#banner {
    background-image: url("https://wallpaperaccess.com/full/2631140.jpg");
    background-repeat: no-repeat;
    background-size: cover ;
    background-position: center;
    
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}

#contenido {
    padding: 20px;
    margin:40px;
    text-align: justify;
}

#contenido section {
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99,  0.2) 0px 2px 5px 0px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 10px;

}

#datos-en-tiempo-real section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99,  0.2) 0px 2px 5px 0px;
    margin-bottom: 20px;
}


iframe {
    width: 100%;
    height: 500px !important;
    border: none;
    border-radius: 8px;
    box-shadow: rgba(99, 99, 99,  0.2) 0px 2px 5px 0px;
}



#temas div:hover {
    transform: scale(1.1);
    background-color:#319ce3;
}
#temas a{
    color:inherit;
    text-decoration: none;
}

#temas div  {
    /* Esto es para que los enlaces se vean como botones */
    display: inline-table;
    font-weight:bold;
    background-color: #319ce3;
    color: rgb(255, 255, 255);
    border-radius: 15px;
    padding: 10px 10px;
    text-decoration: none;
    transition: .3s ease all;
    cursor: pointer;
    border:none;   
   
}
.tema-item {
    margin-left: 20px; /* Reduje el margen izquierdo */
}



/*Deshabilitado de enlaces de los demas temas*/
.tema-link {
    text-decoration: none;
    color: white;
    pointer-events: auto; /* Enlace activado por defecto */
}

.disabled-icon {
    display: none;
    font-size: 20px;
    color: #ff0000; /* Color rojo para indicar bloqueo */
    margin-left: 10px;
}

/* Al pasar el cursor sobre el tema */
.tema-item:hover .disabled-icon {
    display: inline-block;
}

/* Al pasar el cursor sobre el tema, el enlace se deshabilita */
.tema-item:hover .tema-link {
    pointer-events: none; /* Desactiva clics en el enlace */
    color: gray; /* Cambia el color del texto para indicar deshabilitación */
}


