/* Formulario de respuesta */
.tf-formulario-respuesta {
    margin-top: 40px;
    padding: 20px;
    background-color: #f7f9fc;
    border: 1px solid #d3d9e3;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.04);
}

.tf-formulario-respuesta h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
}

.tf-formulario-respuesta label {
    font-weight: 500;
    color: #34495e;
    display: block;
    margin-bottom: 5px;
}

.tf-formulario-respuesta textarea {
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 10px;
    resize: vertical;
    font-size: 14px;
    font-family: inherit;
}

.tf-formulario-respuesta input[type="submit"] {
    margin-top: 15px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    padding: 10px 18px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.tf-formulario-respuesta input[type="submit"]:hover {
    background-color: #005d8c;
}

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

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

.tf-listado-respuestas ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.tf-listado-respuestas li {
    background-color: #fdfdfd;
    border: 1px solid #dfe4ea;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 4px;
}

.tf-listado-respuestas strong {
    color: #0073aa;
    font-weight: 600;
}