/* --- DISEÑO FORO VIDAS COMPARTIDAS --- */

/* 1. Fondo general del foro limpio */
#bbpress-forums {
    font-family: 'Libre Baskerville', serif; /* O la fuente de tu tema */
    background: #FAF7F0; /* Beige suave de tu web */
    padding: 30px;
    border-radius: 15px;
}

/* 2. Estilo de los Debates (Cajas) */
ul.bbp-topics, ul.bbp-forums, ul.bbp-replies {
    border: none !important;
}

li.bbp-header {
    background-color: #9BC4BC; /* Verde agua del logo */
    color: white;
    border-radius: 8px 8px 0 0;
    padding: 15px !important;
    font-weight: bold;
}

li.bbp-body ul.topic, li.bbp-body ul.forum {
    background: white;
    border: 1px solid #eee;
    margin-bottom: 10px;
    border-radius: 8px;
    padding: 15px !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 3. Formulario de escribir (Bonito y grande) */
fieldset.bbp-form {
    border: 1px solid #9BC4BC !important;
    background: white;
    padding: 20px !important;
    border-radius: 10px;
}

fieldset.bbp-form legend {
    background: #F4A286; /* Naranja/Salmón del logo */
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 1.1em;
}

/* Inputs (Cajas de texto nombre/correo) */
#bbpress-forums input[type="text"], 
#bbpress-forums textarea {
    background-color: #FAF7F0;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
}

/* Botón de Enviar */
button.submit, input[type="submit"] {
    background-color: #6B9E96 !important; /* Verde oscuro */
    color: white !important;
    border: none !important;
    padding: 12px 25px !important;
    border-radius: 30px !important;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

button.submit:hover {
    background-color: #F4A286 !important; /* Cambio a naranja al pasar mouse */
}

/* Quitar cosas feas de bbPress */
.bbp-breadcrumb, .bbp-search-form { display: none; } /* Oculta barra búsqueda y migas si molestan */

/* --- OCULTAR CAMPO WEB --- */
#bbpress-forums label[for="bbp_anonymous_website"],
#bbpress-forums #bbp_anonymous_website {
    display: none !important;
}

/* --- MENSAJES DE AVISO MÁS BONITOS --- */
div.bbp-template-notice, div.indicator-hint {
    border-radius: 10px !important;
    border: none !important;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

div.bbp-template-notice.info {
    background-color: #e3f2fd !important; /* Azul muy suave */
    color: #0d47a1 !important;
}

div.bbp-template-notice.warning {
    background-color: #fff3e0 !important; /* Naranja muy suave */
    color: #e65100 !important;
}

/* Desactiva los clics en los títulos de los debates/posts */
.bbp-topic-permalink, 
.bbp-author-name, 
.bbp-topic-freshness a {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
    color: inherit !important;
}

/* Intenta forzar la visibilidad de la descripción si el tema la oculta */
.bbp-topic-content {
    display: block !important;
    padding: 10px 0;
    color: #444;
}