.bs-container {
  color: #fff;
}

.bs-title {
  color: #ffc107;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.bs-subtitle {
  color: rgba(255,255,255,0.75);
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

.bs-card {
  background: rgba(26, 26, 26, 0.6);
  border-radius: 20px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 7, 0.1);
  padding: 24px;
}

.bs-left, .bs-right {
  padding: 16px;
}

.bs-tabs {
  display: flex;
  gap: 8px;
}

.bs-tab {
  background: #0f0f0f;
  color: #ddd;
  border: 1px solid #2a2a2a;
  padding: 8px 12px;
  border-radius: 10px;
  cursor: pointer;
}

.bs-tab.active {
  color: #000;
  background: #ffc107;
  border-color: #ffc107;
}

.bs-panels {
  margin-top: 8px;
}

.bs-panel { display: none; }
.bs-panel.active { display: block; }

.bs-option {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.08);
  color: #eee;
  padding: 10px 12px;
  border-radius: 10px;
}

.bs-option input[type="radio"] {
  accent-color: #ffc107;
}

.bs-generate {
  font-weight: 700;
}

.bs-result {
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.25);
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  padding: 12px;
}

.bs-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}

/* Fancy selects */
.bs-card .form-select {
  background-color: #0f0f0f;
  border: 1px solid #2a2a2a;
  color: #eee;
  border-radius: 12px;
  padding: 10px 42px 10px 14px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23ffc107' viewBox='0 0 16 16'%3E%3Cpath d='M3.204 5.5l4.796 4.79L12.796 5.5 14 6.707 8 12.5 2 6.707z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px 16px;
}
.bs-card .form-select:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem rgba(255,193,7,0.12);
  border-color: #ffc107;
}
.bs-card .form-select option { color: #000; }


