.script-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.script-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.script-modal__content {
  position: relative;
  background: #fff;
  border-radius: 12px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  z-index: 10001;
}

.script-modal__close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  transition: color 0.3s ease;
  z-index: 10002;
}

.script-modal__close:hover {
  color: #000;
}

.script-modal__close svg {
  width: 24px;
  height: 24px;
}

.script-modal__body {
  min-height: 400px;
  position: relative;
}

.script-modal__body:empty::after {
  content: "Завантаження форми...";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #666;
  font-size: 16px;
}

.script-modal__body iframe {
  width: 100%;
  border: none;
  min-height: 400px;
}

@media (max-width: 768px) {
  .script-modal__content {
    padding: 30px 20px;
    max-width: 95%;
  }

  .script-modal__close {
    top: 10px;
    right: 10px;
  }
}
