@charset "utf-8";
/* CSS Document */

.header-actions {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-self: flex-start;
  flex-wrap: wrap;
}

.action-btn {
  background: #CE011F; /* KW Red */
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.action-btn svg {
  flex-shrink: 0;
}

.action-btn:hover {
  background: #990000;
}
.header-actions {
  display: flex;
  gap: 10px;             /* space between buttons/links */
  align-items: center;
  flex-wrap: wrap;
  box-sizing: border-box;
}

/* shared button/link style — anchors use same look as buttons */
.action-btn,
.header-actions .top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: #CE011F;
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
}

/* keep svg icon sized and not stretching the control */
.action-btn svg { width: 18px; height: 18px; flex: 0 0 auto; }

/* hover states */
.action-btn:hover,
.header-actions .top-link:hover { background: #990000; }

/* responsive: stack controls on small screens, keep centered */
@media (max-width: 480px) {
  .header-actions { justify-content: center; gap: 8px; }
  .action-btn,
  .header-actions .top-link { width: auto; padding: 8px 16px; }
  .header-actions { flex-direction: column; align-items: center; }
  .action-btn,
  .header-actions .top-link { width: calc(100% - 32px); max-width: 360px; }
}

@media print {
  .header-actions { display: none; }
}

  h2 {
    color: #000000;
  }
  .contact-info a {
  color: #0f766e;
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover {
  text-decoration: underline;
}

</style>
:root {
  --accent: #CE011F; /* KW Red */
  --muted: #6b665f;  /* Secondary text */
}
/* paste into your stylesheet (last loaded CSS) */
#saveFilledBtn.action-btn,
button#saveFilledBtn,
.action-btn#saveFilledBtn {
  background: #CE011F !important;
  color: #ffffff !important;
  border: 0 !important;
}
#saveFilledBtn svg { stroke: currentColor !important; }