/* Wrapper */

.bscc {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  padding: 0;
}

/* Main bar */

.bscc__panel {
  max-width: none;
  margin: 0;
  border-radius: 0;
  background: var(--bscc-bg);
  color: var(--bscc-text);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}

/* Hide title (not used in bar layout) */

.bscc__title {
  display: none;
}

/* Text */

.bscc__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

/* Buttons row */

.bscc__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  align-items: center;
}

.bscc__btn,
.bscc__buttons a.bscc__btn {
  margin: 0 !important;
  outline: none !important;
}

/* Unified button styling */
.bscc__btn,
.bscc__buttons a.bscc__btn {
  display: inline-block;
  background: var(--bscc-btn);
  color: var(--bscc-text);
  border: none;
  padding: 5px 12px;          /* slightly tighter */
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
}

/* Hover */
.bscc__btn:hover,
.bscc__buttons a.bscc__btn:hover {
  opacity: .9;
  color: var(--bscc-text);
}

/* Primary */
.bscc__btn--primary {
  background: var(--bscc-btn-primary);
}

/* Preferences panel (when opened) */

.bscc__prefs {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 100%;
  background: var(--bscc-bg);
  color: var(--bscc-text);
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,.15);
}


/* Preference rows */

.bscc__pref {
  margin-bottom: 12px;
}

.bscc__pref label {
  display: flex;
  gap: 10px;
  font-size: 14px;
}

/* Hide footer link (you don’t need it now) */

.bscc__link {
  display: none;
}

/* Mobile stacking */

@media (max-width: 768px) {
  .bscc__panel {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .bscc__buttons {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
