/* =============================================================================
   FITREP Evaluator - PoC Warning Banner
   Phase 1 compliance realignment. See PoC-CHARTER.md paragraph 4.g.

   INTENTIONAL VISUAL DEPARTURE FROM SEMPER STYLE GUIDE.
   This file does NOT reference --color-usmc-scarlet, --color-destructive, or any
   brand token. The PoC banner uses raw red (#b71c1c) and Arial system fallback
   so it reads as scaffolding warning, not production chrome. Branding the
   warning would conflate the unfinished tool with a polished product and
   recreate the perception problem documented in the audit dated 2026-05-26.
   Do not "fix" this file to use tokens until the PoC is retired.
   ============================================================================= */

.poc-banner {
  /* Position is handled by the parent #stickyChrome which is sticky top:0.
     Banner flows normally inside the chrome so it stacks above the header. */
  position: relative;
  z-index: 1;
  background: #b71c1c;
  color: #ffffff;
  padding: 4px 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  border-bottom: 2px solid #4a0e0e;
  letter-spacing: 0.4px;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.poc-banner__title {
  display: inline-block;
  text-transform: uppercase;
}

.poc-banner__ack {
  margin-top: 8px;
  font-weight: 500;
  font-size: 12px;
}

.poc-banner__ack button {
  background: #ffffff;
  color: #b71c1c;
  border: 2px solid #ffffff;
  padding: 4px 12px;
  font-weight: 700;
  cursor: pointer;
  margin-left: 8px;
  border-radius: 2px;
}

.poc-banner__ack button:hover {
  background: #ffeeee;
}

.poc-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.poc-modal {
  background: #ffffff;
  color: #1b1b1b;
  max-width: 640px;
  width: calc(100% - 32px);
  padding: 24px;
  border-top: 8px solid #b71c1c;
  font-family: Arial, Helvetica, sans-serif;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.poc-modal h2 {
  color: #b71c1c;
  margin: 0 0 12px 0;
  font-size: 20px;
  text-transform: uppercase;
}

.poc-modal p {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 12px 0;
}

.poc-modal ul {
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 16px 0;
  padding-left: 20px;
}

.poc-modal button.poc-accept {
  background: #b71c1c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 2px;
  font-size: 14px;
}

.poc-modal button.poc-accept:hover {
  background: #8b0000;
}

.poc-app-hidden {
  display: none !important;
}
