/* =========================================================
   ALFAA ERP - SESSION TIMEOUT SECURITY MODAL
   File: assets/css/session-security.css
   ========================================================= */
.session-timeout-backdrop {
  position: fixed;
  inset: 0;
  z-index: 60000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, .50);
  backdrop-filter: blur(5px);
}

.session-timeout-backdrop.is-visible {
  display: grid;
}

.session-timeout-card {
  width: min(430px, 100%);
  padding: 30px 30px 26px;
  border: 1px solid rgba(226, 232, 240, .92);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 32px 70px rgba(15, 23, 42, .24);
  text-align: center;
}

.session-timeout-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 17px;
  border-radius: 17px;
  color: #047857;
  background: #ecfdf5;
  font-size: 25px;
}

.session-timeout-card h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 780;
  letter-spacing: -.025em;
}

.session-timeout-card p {
  margin: 0 0 23px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.6;
}

.session-timeout-card p strong {
  color: #047857;
  font-weight: 760;
}

.session-timeout-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 11px;
  color: #ffffff;
  background: linear-gradient(135deg, #10b981, #059669);
  box-shadow: 0 10px 20px rgba(16, 185, 129, .18);
  font: 700 14px/1 "Inter", Arial, sans-serif;
  cursor: pointer;
}

.session-timeout-btn:hover {
  background: linear-gradient(135deg, #059669, #047857);
}

.session-timeout-btn:disabled {
  opacity: .65;
  cursor: wait;
}
