.sscb_banner,
.sscb_modal,
.sscb_manage_button {
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}

.sscb_banner *,
.sscb_modal *,
.sscb_manage_button {
  box-sizing: border-box;
}

.sscb_banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 999999;
}

.sscb_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: #ffffff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.sscb_brand_content {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.sscb_logo {
  width: 120px;
  height: auto;
  flex: 0 0 auto;
}

.sscb_logo_modal {
  width: 120px;
  margin-bottom: 18px;
}

.sscb_text {
  min-width: 0;
}

.sscb_text strong {
  display: block;
  margin-bottom: 6px;
  color: #111827;
  font-size: 18px;
  line-height: 1.2;
}

.sscb_text p {
  margin: 0;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.55;
}

.sscb_actions,
.sscb_modal_actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
}

.sscb_modal_actions {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #f3f4f6;
  justify-content: flex-end;
}

.sscb_button {
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  padding: 14px 24px;
  transition: all 0.2s ease;
}

.sscb_button_primary {
  background: #000000;
  color: #ffffff;
}

.sscb_button_primary:hover {
  background: #222222;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.sscb_button_secondary {
  background: #ffffff;
  color: #111827;
  border: 1px solid #d1d5db;
}

.sscb_button_secondary:hover {
  background: #f9fafb;
  border-color: #9ca3af;
}

.sscb_modal {
  position: fixed;
  inset: 0;
  z-index: 1000000;
}

.sscb_modal_backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.sscb_modal_panel {
  position: relative;
  width: min(680px, calc(100% - 32px));
  margin: 48px auto;
  background: #ffffff;
  color: #111827;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.sscb_modal_panel h2 {
  margin: 0 0 10px 0;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 700;
}

.sscb_modal_intro {
  margin: 0 0 24px 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.6;
}

.sscb_option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid #f3f4f6;
}

.sscb_option strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  color: #111827;
}

.sscb_option p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
}

.sscb_option input {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.sscb_option_locked span {
  font-size: 13px;
  font-weight: 700;
  color: #111827;
  white-space: nowrap;
}

.sscb_manage_button {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999998;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #ffffff;
  color: #111827;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 16px;
}

@media (max-width: 768px) {
  .sscb_banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .sscb_inner {
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
  }

  .sscb_brand_content {
    flex-direction: column;
    align-items: flex-start;
  }

  .sscb_actions,
  .sscb_modal_actions {
    flex-direction: column;
    width: 100%;
  }

  .sscb_button {
    width: 100%;
  }

  .sscb_logo {
    width: 110px;
  }

  .sscb_modal_panel {
    margin: 16px auto;
    padding: 22px 18px;
  }

  .sscb_modal_panel h2 {
    font-size: 24px;
  }

  .sscb_option {
    align-items: flex-start;
  }

  .sscb_option input,
  .sscb_option_locked span {
    margin-top: 4px;
  }
}
