/* Overlay */
#sd-overlay {
  position: fixed;
  inset: 0;
  background: rgba(25, 20, 15, 0.65);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
}

/* Modal */
#sd-modal {
  background: #ffffff;
  max-width: 760px;
  width: 92%;
  padding: 34px 36px;
  border-radius: 22px;
  font-family: inherit;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

/* Title */
.sd-title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #1f1f1f;
  margin-bottom: 14px;
}

/* Divider */
.sd-divider {
  width: 60px;
  height: 2px;
  background: #8b5e34;
  margin: 0 auto 22px auto;
  border-radius: 2px;
}

/* Text */
#sd-modal p {
  font-size: 15.5px;
  line-height: 1.75;
  color: #3b3b3b;
  margin-bottom: 14px;
}

/* Buttons wrapper */
.sd-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

/* Accept button */
#sd-accept {
  background: linear-gradient(135deg, #6f4e37, #4e3424);
  color: #ffffff;
  border-radius: 14px;
  padding: 13px 30px;
  border: none;
  font-size: 15.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}

#sd-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(78, 52, 36, 0.45);
}

/* Decline button */
#sd-decline {
  background: #ffffff;
  border: 1px solid #c7c7c7;
  color: #2d2d2d;
  border-radius: 14px;
  padding: 13px 30px;
  font-size: 15.5px;
  cursor: pointer;
}

/* Footer note */
.sd-note {
  display: block;
  text-align: center;
  margin-top: 18px;
  font-size: 12.5px;
  color: #6b6b6b;
}