/* ZSCORE POPUP MODULE */

.zscore_alert_container {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.zscore_alert_container.hidden {
  display: none !important;
}

.zscore_alert_box {
  width: 100%;
  max-width: 420px;
  background-color: #2e3b2e;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 1rem rgba(0,0,0,0.2);
  font-family: 'Segoe UI', sans-serif;
}

.zscore_alert_header {
  background-color: #6c8f6c;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.zscore_alert_icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  flex-shrink: 0;
}

.zscore_alert_title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #fff;
  flex-grow: 1;
}

.zscore_alert_close {
  position: absolute;
  right: 16px;
  top: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #fff;
  cursor: pointer;
}

.zscore_alert_body {
  padding: 24px 16px;
  color: #eee;
  text-align: center;
}

.zscore_alert_message {
  font-size: 1rem;
  margin-bottom: 24px;
}

.zscore_alert_actions {
  display: flex;
  justify-content: center;
}

.zscore_alert_button {
  padding: 10px 24px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  background-color: #6c8f6c;
  color: #fff;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
}

.zscore_alert_button:hover {
  background-color: #5a7c5a;
}

.zscore_alert_icon_large {
    font-size: 2.5rem;
    margin-bottom: 12px;
    text-align: center;
}

.zscore_alert_icon_large i {
    color: inherit;
}
