#header { 
  background: #dbdbdb;
  background-image: linear-gradient(to top right, #ff9900, #ffffff);
}

.PmTOCdiv {
    float: right;
    font-size: 1em;
    margin-left: 5px;
    padding: 10px;
  }

.HOTDiv_content {
  display: flex;
  flex-wrap: wrap;
  gap: 1px;

}
.HOTDiv {
  width: 75px;
  height: 90px;
  text-align: center;
  font-size: 12px;
}

.HOTDiv img {
  border-radius: 25%;
  width: 64px;
  height:64px;
  object-fit: cover;
}

#wikiedit textarea {
  height: 40em;
}

/ *----------- Redefinición del SourceBlockText ------------ */
.sourceblocktext div {
   font-size: 100% !important;

}

/ *----------- Para Tarjetas ------------ */
#tarjeta {
    max-width: 450px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    /* Forzamos los bordes redondeados */
    border-radius: 15px !important;

    /* Forzamos los estilos de los bordes laterales y horizontales */
    border-left: 3px dotted #3498db !important;
    border-right: 3px dotted #3498db !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;

    /* Asegura que se comporte como un bloque contenedor rígido */
    display: block !important;
    box-sizing: border-box;
}

        /* Estilo del título */
        #tarjeta-titulo {
            margin-top: 0;
            color: #2c3e50;
            font-size: 1.4rem;
            border-bottom: 1px solid #f1f1f1;
            padding-bottom: 10px;
        }

        /* Estilo del cuerpo central */
        #tarjeta-cuerpo {
            color: #555555;
            font-size: 1rem;
            line-height: 1.6;
            margin: 15px 0 25px 0;
        }

        /* Contenedor inferior (Pie de la tarjeta) */
        #tarjeta-pie {
            display: flex;
            justify-content: space-between; /* Empuja un elemento a la izquierda y otro a la derecha */
            align-items: center;
        }

        /* Texto inferior izquierdo con fondo determinado */
        #texto-destacado {
            background-color: #e8f4fd;
            color: #2980b9;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.85rem;
            font-weight: bold;
        }

        /* Enlace inferior derecho */
        #enlace-tarjeta {
            color: #e74c3c;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 600;
            transition: color 0.2s ease;
        }

        #enlace-tarjeta:hover {
            text-decoration: underline;
            color: #c0392b;
        }
