/*
Theme Name: Nombre de tu tema hijo
Theme URI: https://tusitio.com
Description: Tema hijo de [NOMBRE DEL TEMA PADRE]
Author: Nico
Template: carpeta-del-tema-padre
Version: 1.0
*/





/* =====================================
   ESTILO BBPRESS - TARINGA CLASSIC
   Autor: Lulú (para Nico 💙)
   ===================================== */

/* Fondo general del foro */
#bbpress-forums {
  background: #f3f6fa;
  font-family: 'Open Sans', Arial, sans-serif;
  border-radius: 8px;
  padding: 15px;
  margin-top: 10px;
}

/* Contenedor de temas y respuestas */
.bbp-reply,
.bbp-topic {
  display: flex;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

/* Columna izquierda (usuario) */
.bbp-author-avatar {
  width: 160px;
  background: #e9eef4;
  border-right: 1px solid #d1d1d1;
  padding: 12px;
  text-align: center;
}

.bbp-author-avatar img {
  border-radius: 6px;
  max-width: 90px;
  margin-bottom: 8px;
  border: 1px solid #ccc;
}

.bbp-author-name {
  display: block;
  font-weight: bold;
  color: #0070c9;
  font-size: 0.95em;
  margin-bottom: 5px;
}

.bbp-author-role {
  font-size: 0.8em;
  color: #777;
}

/* Columna derecha (mensaje) */
.bbp-reply-content,
.bbp-topic-content {
  flex: 1;
  padding: 15px;
  font-size: 0.95em;
  color: #222;
  line-height: 1.6em;
}

/* Encabezado del tema */
.bbp-topic-title {
  background: #0070c9;
  color: #fff;
  padding: 10px 15px;
  border-radius: 4px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1em;
}

/* Barra superior tipo Taringa */
#taringa-header {
  background: linear-gradient(180deg, #2b9df1, #0070c9);
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#taringa-header h1 {
  font-size: 1.2em;
  font-weight: bold;
}

#taringa-header a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  margin: 0 8px;
}

/* Botones */
.bbp-submit-wrapper input[type="submit"],
.bbp-reply-form button {
  background: #0070c9;
  color: #fff;
  border: none;
  padding: 8px 14px;
  border-radius: 4px;
  cursor: pointer;
}

.bbp-submit-wrapper input[type="submit"]:hover,
.bbp-reply-form button:hover {
  background: #005fa3;
}

/* Cajas internas */
.bbp-reply-header {
  background: #f7f9fc;
  border-bottom: 1px solid #ddd;
  padding: 8px 12px;
  font-size: 0.9em;
  color: #666;
}

/* Enlaces */
#bbpress-forums a {
  color: #0070c9;
  text-decoration: none;
}

#bbpress-forums a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .bbp-reply,
  .bbp-topic {
    flex-direction: column;
  }

  .bbp-author-avatar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid #d1d1d1;
  }
}
