@charset "utf-8";
/* CSS Document */
/* modal buttons */
.floating-modalIn-btn {
  position: fixed;
  bottom: 0px;     /* distance from bottom */
  left: 20px;      /* distance from right */
  padding: 12px 18px;
  background: #257ba0;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10000;   /* ensure it’s above everything */
}
.floating-modalIn-btn:hover {
  background: #003049;
}
.floating-modalOut-btn {
  position: fixed;
  bottom: 0px;     /* distance from bottom */
  left: 20px;      /* distance from right */
  padding: 12px 18px;
  background: #257ba0;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10000;   /* ensure it’s above everything */
}
.floating-modalOut-btn:hover {
  background: #003049;
}
.floating-modalReg-btn {
  position: fixed;
  bottom: 0px;     /* distance from bottom */
  left: 220px;      /* distance from right */
  padding: 12px 18px;
  background: #257ba0;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  z-index: 10000;   /* ensure it’s above everything */
}
.floating-modalReg-btn:hover {
  background: #003049;
}
/* --- Modal Background --- */
  .modal-overlay {
    display: none;              /* Hidden by default */
    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;
  }

  /* --- Modal Box --- */
  .modal-content {
    background: #fff;
    width: 80%;
    max-width: 800px;
   px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.2);
    overflow: hidden;
    position: relative;
  }

  /* --- Close Button --- */
  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #FF0004;
    color: #fff;
    border: none;
    padding: 2px 10px 4px 10px;
    cursor: pointer;
    border-radius: 4px;
  }

  /* --- iFrame Styling --- */
  .modal-iframe {
    width: 100%;
    height: 600px;
    border: none;
  }