#gpr-kominfo-widget-header { display: none !important; }
#gpr-kominfo-widget-footer { display: none !important; }
#gpr-kominfo-widget-container {padding-bottom: 5px !important; background-color: #0093DD !important; border-top: 5px solid #0093DD!important; }

.no-tailwind {
  all: revert;
}

/* Reset heading styles */
.no-tailwind h1,
.no-tailwind h2,
.no-tailwind h3,
.no-tailwind h4,
.no-tailwind h5,
.no-tailwind h6 {
  all: revert;
  font-weight: revert;
  font-size: revert;
  margin: revert;
  line-height: revert;
  text-align: inherit;
  color: inherit;
}

/* Reset paragraph */
.no-tailwind p {
  all: revert;
  margin: revert;
  line-height: revert;
  color: inherit;
  text-align: inherit;
}

/* Reset ordered list */
.no-tailwind ol {
  all: revert;
  list-style: decimal;
  margin-left: 1.5em;
  padding-left: 0;
  text-align: inherit;
}

/* Reset unordered list */
.no-tailwind ul {
  all: revert;
  list-style: disc;
  margin-left: 1.5em;
  padding-left: 0;
  text-align: inherit;
}

/* Reset list items */
.no-tailwind li {
  all: revert;
  margin: revert;
  padding: revert;
  text-align: inherit;
  color: inherit;
}

/* Optional: keep inheritance for nested elements */
.no-tailwind * {
  text-align: inherit;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}




/* Overlay */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Modal Box */
.modal-box {
  background: #fff;
  width: 90%;
  max-width: 800px;
  border-radius: 16px; /* lebih besar agar lembut */
  padding: 40px; /* lebih banyak padding */
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 18px; /* lebih kecil dari sebelumnya */
  cursor: pointer;
  color: #555;
}
.modal-close:hover {
  color: #000;
}

/* Content */
.modal-content {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: center; /* vertikal center */
}

/* Left Section */
.modal-left {
  flex: 1;
  text-align: center;
  padding: 20px;
}
.modal-left h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 15px 0;
  color: #222;
}
.modal-left p {
  font-size: 15px;
  color: #666;
  line-height: 1.5;
}
.modal-image {
  width: 200px;
  margin-bottom: 15px;
  display: block;
  margin-left: auto;
  margin-right: auto; /* gambar center */
}

/* Right Section */
.modal-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px; /* lebih halus */
  font-size: 14px;
  transition: all 0.3s ease;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
  border-color: #004aad;
  box-shadow: 0 0 8px rgba(0, 74, 173, 0.2);
  outline: none;
}
.btn-submit {
  background: #004aad;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-submit:hover {
  background: #003580;
}

/* Open Button */
.btn-open {
  background: #004aad;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn-open:hover {
  background: #003580;
}

