.loom-confirm-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loom-confirm {
  background: #fff;
  padding: 18px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  max-width: 560px;
  width: 90%;
}
.loom-confirm-message {
  font-size: 17px;
  margin-bottom: 18px;
}
.loom-confirm-actions {
  text-align: right;
}
.loom-confirm-actions .primary {
  background: #e74c3c;
  color: #fff;
  border: none;
  padding: 8px 22px;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}
