.mk-modal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  line-height: 1.2;
}
.mk-modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.mk-modal-content {
  background: #fff;
  padding: 20px 25px;
  border-radius: 10px;
  max-width: 600px;
  width: 90%;
  text-align: left;
}
.mk-modal-content h3 {
  margin-top: 0;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .mk-modal-content {
    width: 85%;
  }
}
