/* ==========================================================
   Victory Biblia - Estilos principales
   Basado en la guía de marca Victory Vida Church
   ========================================================== */

.vb-widget {
  font-family: 'Roboto', sans-serif;
  color: #17243E;
  background: #C3D0C733;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease-in-out;
  max-width: 800px;
  margin: 0 auto;
}

/* Selectores */
.vb-selector {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

.vb-selector select,
.vb-selector button {
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.vb-selector button:hover {
  background-color: #E4E784;
}

/* Texto de versículos */
.vb-verse-text {
  font-size: 16px;
  line-height: 1.6;
  background: #fff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vb-verse-text strong {
  color: #053F2D;
  font-weight: 700;
  display: block;
  margin-bottom: 5px;
}

.vb-verse-text em {
  color: #17243E;
}

/* Botones secundarios */
.vb-actions {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.vb-actions button {
  padding: 8px 12px;
  background: #637EB9;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.vb-actions button:hover {
  background: #053F2D;
}

/* Versículos individuales dentro de capítulo */
.vb-verse-line {
  padding: 4px 6px;
  border-radius: 4px;
  margin: 2px 0;
  cursor: pointer;
}

.vb-verse-line sup {
  color: #637EB9;
  font-weight: bold;
  margin-right: 4px;
}

/* Modo oscuro */
.vb-dark {
  background: #17243E;
  color: #F5F5F5;
}

.vb-dark .vb-verse-text {
  background: #1E2C4C;
  color: #F5F5F5;
}

.vb-dark select,
.vb-dark button {
  background: #1E2C4C;
  color: #fff;
  border: 1px solid #637EB9;
}

.vb-dark .vb-actions button {
  background: #637EB9;
  color: #fff;
}

.vb-dark .vb-actions button:hover {
  background: #E4E784;
  color: #17243E;
}

/* Lista de favoritos */
#vb-favoritos-lista {
  margin-top: 20px;
  padding: 10px;
}

#vb-fav-ul {
  list-style-type: square;
  padding-left: 20px;
}

#vb-fav-ul li {
  margin-bottom: 6px;
  color: #053F2D;
}
