.exec-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;

  /* INCREMENT */
  backdrop-filter: blur(4px);
  animation: execFadeIn 0.25s ease;
}

.exec-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.75);

  /* INCREMENT */
  backdrop-filter: blur(2px);
}

.exec-box {
  position: relative;
  background: #111;
  color: #fff;
  padding: 30px;
  width: 420px;
  border-radius: 12px;
  z-index: 2;

  /* INCREMENT */
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.03);
  animation: execSlideUp 0.35s ease;
  overflow: hidden;
}

/* INCREMENT */
.exec-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00a86b, #22c55e);
}

/* INCREMENT */
.exec-box h2 {
  margin-top: 0;
  margin-bottom: 20px;
  text-align: center;
  font-size: 26px;
  letter-spacing: 0.5px;
  color: #ffffff;
}

.exec-box input,
.exec-box textarea {
  width: 100%;
  margin: 6px 0;
  padding: 10px;
  border-radius: 6px;
  border: none;

  /* INCREMENT */
  background: #1b1b1b;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.2s ease;
  box-sizing: border-box;
  font-size: 14px;
}

/* INCREMENT */
.exec-box input::placeholder,
.exec-box textarea::placeholder {
  color: #9ca3af;
}

/* INCREMENT */
.exec-box input:focus,
.exec-box textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
  background: #161616;
}

.exec-box textarea {
  min-height: 110px;
  resize: vertical;

  /* INCREMENT */
  line-height: 1.5;
}

.exec-box button {
  width: 100%;
  padding: 12px;
  background: #00a86b;
  color: #fff;
  border: none;
  margin-top: 10px;
  cursor: pointer;

  /* INCREMENT */
  border-radius: 8px;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: all 0.2s ease;
  box-shadow: 0 8px 20px rgba(0,168,107,0.25);
}

/* INCREMENT */
.exec-box button:hover {
  background: #22c55e;
  transform: translateY(-1px);
  box-shadow: 0 12px 25px rgba(34,197,94,0.35);
}

/* INCREMENT */
.exec-box button:active {
  transform: scale(0.99);
}

/* INCREMENT */
.exec-box label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  font-size: 13px;
  color: #cbd5e1;
}

/* INCREMENT */
.exec-box input[type="checkbox"] {
  width: auto;
  margin: 0;
}

/* INCREMENT */
@keyframes execFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* INCREMENT */
@keyframes execSlideUp {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* INCREMENT */
@media (max-width: 520px) {

  .exec-box {
    width: calc(100% - 30px);
    padding: 24px;
    border-radius: 14px;
  }

  .exec-box h2 {
    font-size: 22px;
  }

}