.bsm-no-scroll {
  overflow: hidden;
}

.bsm-button {
  margin-top: auto;
  background: #ff0000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: .75rem 1.25rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  transition: background .2s ease, transform .1s ease;
  line-height: 1.5;
  text-align: center;
  display: inline-flex;
  justify-content: center;
}

.bsm-button:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.bsm-button:focus {
  outline: 2px solid #f87171;
  outline-offset: 2px;
}


.bsm-modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  color: #333;
}

.bsm-modal-container {
  overflow: auto;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.bsm-modal-content {
  background: #fff;
  padding: 20px;
  width: 90%;
  max-width: 900px;
  position: relative;
  border-radius: 16px;
}

.bsm-close {
  position: absolute;
  right: 15px;
  top: 10px;
  cursor: pointer;
  font-size: 20px;
}

#bsm-form {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: start;
  gap: 16px;
}

#bsm-form label {
  font-size: 14px;
  font-weight: 600;
}

#bsm-form input {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
}

#bsm-form select {
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  background: #fff;
  cursor: pointer;
}

.bsm-input-row {
  display: flex;
  gap: 16px;
}

.bsm-input-wrapper {
  display: flex;
  flex-direction: column;
}

.bsm-input-wrapper.handler {
  flex: 1;
}

.bsm-input-wrapper.platform {
  flex: 0;
  min-width: 200px;
}

.bsm-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider-r {
  height: 100%;
  border-right: 1px solid #999;
}

.bsm-youtube-btn-wrapper {
  display: flex;
  align-items: center;
  gap: 4px;
}

.bsm-image-btn,
.bsm-youtube-btn {
  margin-top: auto;
  padding: 8px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s ease, transform .1s ease;
  text-align: center;
  display: flex;
  justify-content: center;
}

.bsm-image-btn:hover,
.bsm-youtube-btn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

.bsm-image-btn:focus,
.bsm-youtube-btn:focus {
  outline: 2px solid #9ca3af;
  outline-offset: 2px;
}

.bsm-submit-btn {
  margin-top: auto;
  background: #dc2626;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: .75rem 1.25rem;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.1), 0 2px 4px -1px rgba(0,0,0,.06);
  transition: background .2s ease, transform .1s ease;
  line-height: 1.5;
  text-align: center;
  display: inline-flex;
  justify-content: center;
}

.bsm-submit-btn:hover {
  background: #b91c1c;
  transform: translateY(-1px);
}

.bsm-submit-btn:focus {
  outline: 2px solid #f87171;
  outline-offset: 2px;
}

.mce-menu.mce-in.mce-animate,
.wp-help-th-center,
#mceu_91-body,
#mceu_55-body,
#wp-link {
  color: #000 !important;
}

.mce-menu.mce-in.mce-animate .mce-text {
  font-family: "Poppins", sans-serif !important;
}

.bsm-response {
  display: none;
}

.bsm-honeypot {
  display: none;
}

.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: 16px;
}

.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
  padding: .75rem 1rem;
  border-radius: .5rem;
  font-weight: 600;
  font-size: 16px;
}