body {
    font-family: Helvetica, Arial, sans-serif;
    background-color: #f0f2f5;
    margin: 0;
    padding: 20px;
}

.comments-container {
    max-width: 600px;
    margin: auto;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.user-avatar {
    width: 40px;
    height: 40px;
  /*   border-radius: 50%; Avatares redondos */
    margin-right: 10px;
    object-fit: cover;
}

/* Área de nuevo comentario */
.new-comment-area {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.comment-input-wrapper {
    flex-grow: 1;
}

.comment-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #dddfe2;
    border-radius: 18px; /* Input redondeado */
    font-family: inherit;
    box-sizing: border-box;
}

/* Elemento de comentario individual */
.comment-item {
    display: flex;
    margin-bottom: 15px;
}

.comment-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.comment-bubble {
    background-color: #f0f2f5; /* Fondo gris claro de los comentarios */
    padding: 8px 12px;
    border-radius: 18px; /* Burbuja de comentario redondeada */
    display: inline-block;
    max-width: fit-content;
}

.user-name {
    font-weight: 1000;
    color: #3f5793;
    display: block;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 15px;
	text-align: left;
}

.user-name:hover {
    text-decoration: underline;
}

.comment-text {
    margin: 0;
    color: #050505;
    font-size: 14px;
    color: #261e21;
	text-align: left;
}

.comment-actions {
    display: flex;
    align-items: center;
    margin-top: 4px;
    margin-left: 13px; /* Alineado con el borde izquierdo de la burbuja */
    font-size: 10px;
    color: #536db0;
	text-align: left;
}

.comment-actions a {
    color: #536db0;
    text-decoration: none;
    font-weight: 600;
}

.comment-actions a:hover {
    text-decoration: underline;
}

.comment-actions span {
    color: #536db0;
    margin: 0 4px;
}

.timestamp {
    color: #536db0;
}

/* Estilo para respuestas anidadas (sangría) */
.comment-item.reply {
    margin-left: 50px;
}

img.float-logo {
    float: left;
  vertical-align: middle;
/*    margin-right: 15px;  space between image and text */
    }

span.cabecera {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #3f5793;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 16px;
    text-align: left;
    max-width: 600px;
	display: inline-block;
    width: 600px;
}

span.cabecera2 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: #3f5793;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 12px;
    text-align: left;
    max-width: 600px;
	display: inline-block;
    width: 600px;
}

div.cabecera {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 600;
    color: #3f5793;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 16px;
    text-align: left;
    max-width: 600px;
	display: inline-block;
    width: 600px;
}

div.cabecera2 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 300;
    color: #3f5793;
    margin-bottom: 2px;
    text-decoration: none;
    font-size: 12px;
    text-align: left;
    max-width: 600px;
	display: inline-block;
    width: 600px;
}


/* cuadro Likes FB  */


/* Contenedor de la tabla */
    .likes {
        width: 92px;   /* Ancho fijo */
        height: 40px;  /* Alto fijo */
        border-collapse: collapse;
        background-image: url('https://www.poesi.as/fbimgs/likes.png'); /* Imagen de fondo */
     /*   background-size: cover;   /* Ajusta la imagen sin deformarla */
        background-position: center; /* Centra la imagen */
		background-size: 92px 40px;
        background-repeat: no-repeat;
        border: 0;
    }

    /* Estilos de celdas */
    .likes td, .likes th {
        border: 0;
		font-size: 10px;
		font-weight: 500;
        text-align: center;
		font-family: Helvetica, Arial, sans-serif;
        color: black;
        padding: 2px;
		/*table-caption: "Suma de Likes recibidos hasta 10 de febrero de 2026, fecha en que se retiró el servicio por parte de Facebook";*/
        background-color: rgba(F, F, F, F.4); /* Fondo semitransparente para texto legible */
    }
	
	

	


/* utterances y giscus GitHub Comments */
.utterances {
    max-width: 800px; /* Adjust container width */
    margin: 0 auto;    /* Center the widget */
}

.utterances-frame {
    height: auto;      /* Ensure proper height */
}

.giscus {
    max-width: 600px; /* Adjust container width */
    margin: 3px auto;    /* Center the widget */
}

.giscus-frame {
    height: auto;      /* Ensure proper height */
}
/* Texto de ayuda en cuadro de Likes */

.ayuda {
  position: relative;
  display: inline-block;
  cursor: help;
}

.tooltip {
  visibility: hidden;
  width: 300px;
  background-color: #FADA04;
  color: #0F4788;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Aparece arriba del texto */
  left: 50%;
  margin-left: -80px;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltip2 {
  visibility: hidden;
  width: 300px;
  background-color: #0F4788;
  color: #FADA04;
  text-align: center;
  padding: 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Aparece arriba del texto */
  left: 50%;
  margin-left: -80px;
  opacity: 0;
  transition: opacity 0.3s;
}

.ayuda:hover .tooltip {
  visibility: visible;
  opacity: 1;
}