/*!
 * IEModal v1.0.1
 * iemodal.css
 * Supports IE5–IE11 modal handling
 * (c) 2025 Excel Force
 * Date: 2025-09-02
 */

.ie-modal {
  display: none;
  position: absolute;
  width: 600px;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  z-index: 1050;
}

.ie-modal-lg {
  width: 900px;
}

.ie-modal-content {
  position: relative;
}

.ie-modal-header {
  padding: 15px;
  border-bottom: 1px solid #dee2e6;
}

.ie-modal-close {
  float: right;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
  color: #000;
  filter: alpha(opacity=20);
  opacity: 0.2;
  border: 0;
  cursor: hand;
}

.ie-modal-body {
  padding: 15px;
  color: #212529;
  font-size: 12px;
}

.ie-modal-footer {
  padding: 10px;
  border-top: 1px solid #dee2e6;
  text-align: right;
}

.ie-btn {
  padding: 4px 10px;
  font-size: 12px;
  margin-left: 5px;
  border: 1px solid transparent;
  cursor: hand;
  cursor: pointer;
  filter: alpha(opacity=100);
  zoom: 1;
}

.ie-btn-primary {
  background-color: #0092DD;
  color: #fff;
  border-color: #007bff;
}

.ie-btn-secondary {
  background-color: #6c757d;
  color: #fff;
  border-color: #6c757d;
}

.ie-modal-rounded {
  border-radius: 1rem; /* modern browsers */
  -webkit-border-radius: 1rem; /* Safari/old iOS */
  -moz-border-radius: 1rem; /* old Firefox */
}

.ie-modal-center {
  position: fixed; /* modern browsers */
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%); /* modern browsers */
  /* IE6–8 fallback (no transform support) */
  position: absolute\9; /* IE hack */
  top: 50%\9;
  left: 50%\9;
  margin-top: -150px\9; /* half of modal height */
  margin-left: -300px\9; /* half of modal width */
}