/* === Bloque principal de respuestas === */
.tf-listado-respuestas {
	margin-top: 40px;
}

.tf-listado-respuestas h3 {
	font-size: 20px;
	font-weight: 600;
	color: #2c3e50;
	margin-bottom: 20px;
}

/* === Ítem de respuesta individual === */
.tf-respuesta-item {
	padding: 15px 20px;
	margin-bottom: 20px;
	border: 1px solid #ddd;
	background-color: #f9f9f9;
	border-radius: 4px;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.03);
}

/* === Encabezado del autor y fecha === */
.tf-respuesta-item p {
	margin: 0 0 10px;
	font-weight: 500;
	color: #333;
}

/* === Contenido de la respuesta === */
.tf-respuesta-item div {
	font-size: 15px;
	line-height: 1.6;
	color: #444;
}

/* === Conversaciones privadas (subrespuestas) === */
.tf-conversaciones {
	margin-top: 15px;
	padding-left: 25px;
	border-left: 3px solid #ddd;
	background-color: #fcfcfc;
	border-radius: 3px;
	font-size: 14px;
}

.tf-conversaciones div {
	margin-bottom: 8px;
}

.tf-conversaciones em {
	color: #2c3e50;
	font-style: normal;
}

/* === Formulario de subrespuesta === */
.tf-subrespuesta-form {
	margin-top: 15px;
}

.tf-subrespuesta-form textarea {
	width: 100%;
	border: 1px solid #ccc;
	border-radius: 4px;
	padding: 10px;
	font-size: 14px;
	resize: vertical;
	margin-bottom: 10px;
}

.tf-subrespuesta-form button {
	background-color: #0073aa;
	color: white;
	border: none;
	padding: 8px 16px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.tf-subrespuesta-form button:hover {
	background-color: #005d8c;
}