/**
 * EasyMan v2 - 72h Offline Storage, 6h Email Alerting & License Gate Stylesheet
 */

/* Persistent Global Outage Alert Banner */
.offline-banner {
  background: linear-gradient(90deg, #991b1b, #b91c1c);
  color: #ffffff;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 2px solid #ef4444;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
  position: sticky;
  top: 64px;
  z-index: 99;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.offline-banner-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stakeholder-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.stakeholder-card {
  background-color: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  flex-direction: column;
}
.stakeholder-role {
  font-size: 11px;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 2px;
}
.stakeholder-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
}
.stakeholder-email {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 4px;
}

/* License Lock Screen Modal */
.license-lock-modal {
  text-align: center;
  padding: 30px 20px;
}
.lock-icon-wrap {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  border: 2px solid #ef4444;
  animation: pulseRed 1.5s infinite;
}
.lock-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.lock-desc {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto 20px;
}
.lock-details-box {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: left;
  margin-bottom: 20px;
  font-size: 12px;
}
