/* 🔲 MODAL OVERLAY */
.custom-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  padding: 2rem;
  overflow-y: auto;
  justify-content: center;
  align-items: center;
}

/* 🔳 MODAL DIALOG (CENTERED + MARGIN) */
.modal-dialog-custom {
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  width: 100%;
  max-width: 600px;
  margin: auto;
  position: relative;
}

/* ❌ REMOVE UNDERLINE IN FOOTER + SITE TITLE */
.site-title a,
footer a {
  text-decoration: none !important;
  color: inherit;
}

/* ✨ HOVER EFFECT (NO UNDERLINE) */
.site-title a:hover,
footer a:hover {
  text-decoration: none !important;
  opacity: 0.85;
}

/* 🔘 ROUND CLOSE BUTTON STYLE */
#closeModal {
  width: 36px;
  height: 36px;
  padding: 0;
  font-size: 1.5rem;
  background-color: #f8f9fa;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 🧷 MOBILE RESPONSIVE FIX FOR MODAL */
@media (max-width: 576px) {
  .modal-dialog-custom {
    margin: 2rem auto;
  }
}
