/* =====================================================================
   download-alert-modal.css - JessOS Download Alert Modal Styles
   ===================================================================== */

/* Modal Overlay */
.download-alert-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.download-alert-modal.hidden {
  display: none;
}

/* Modal Content */
.download-alert-content {
  background: var(--popover-bg, #303030);
  border-radius: 12px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  padding: 28px 32px;
  max-width: 420px;
  width: 90vw;
  text-align: center;
}

/* Title */
.download-alert-title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary, #ffffff);
}

/* Message */
.download-alert-message {
  margin: 0 0 24px;
  color: var(--text-secondary, #999);
  font-size: 14px;
  line-height: 1.5;
}

/* Buttons */
.download-alert-buttons {
  display: flex;
  justify-content: center;
}

.download-alert-ok {
  background: var(--gp-accent, #d45500);
  color: #ffffff;
  border: none;
  padding: 10px 40px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: filter 0.15s;
}

.download-alert-ok:hover {
  filter: brightness(1.15);
}

.download-alert-ok:focus-visible {
  outline: 2px solid var(--gp-accent, #d45500);
  outline-offset: 2px;
}
