/* ===============================
   KNOWN ISSUES (Amber banner)
   =============================== */
#known-issues-banner {
  background-color: #f59e0b; /* amber */
  color: #fff;
  text-align: center;
  font-weight: 500;
  margin-top: 10px;          /* (1) breathing room from header */
  margin-bottom: 15px;
}
#known-issues-banner .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Summary bar (collapsible toggle) */
#ki-details > summary {
  padding: 14px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#ki-details > summary::-webkit-details-marker { display: none; }
#ki-details > summary::after {
  content: "";
  margin-left: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
}
#ki-details[open] > summary::after { transform: rotate(-135deg); }

/* Badge next to title (shows "(N)") */
#ki-details .badge {
  background: rgba(255,255,255,0.85); /* (4) softer white */
  color: #92400e;                     /* deeper amber text */
  font-size: 12px;
  font-weight: 600;
  padding: 2px 8px;
  margin-left: 6px;
  border-radius: 999px;
}
#ki-details .badge::before { content: " ("; }
#ki-details .badge::after  { content: ")"; }

/* Expanded body (issue card) */
#ki-details .ki-body {
  background: #fff;
  color: #333;
  padding: 18px;
  border-top: 1px solid #e5e7eb;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08); /* (2) softer shadow */
  max-width: 900px;
  margin: 0 auto;
}

/* (3) smoother expand animation */
#ki-details[open] .ki-body {
  animation: ki-fade 0.3s ease;
}
@keyframes ki-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

#ki-details .ki-body ul {
  padding-left: 18px;
  margin: 8px 0;
}

/* ===============================
   HEADER NAV (Subscribe + Contact)
   =============================== */
.header-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;               /* spacing between CTAs */
  padding: 10px 0;
}

/* Atlassian injects this wrapper for Subscribe */
.header-nav .updates-dropdown-container {
  display: inline-flex;
  align-items: center;
}

/* Contact Support button */
.contact-button {
  background: #2563eb;
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.2s ease;
}
.contact-button:hover { background: #1e40af; }

/* ===============================
   VIMEO LIGHTBOX
   =============================== */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0,0,0,0.7);
}
.video-content {
  position: relative;
  width: 80%;
  max-width: 800px;
  margin: 5% auto;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
}
.video-content iframe {
  width: 100%;
  height: 450px;
  border: none;
}
.video-close {
  position: absolute;
  top: 10px;
  right: 14px;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}
.video-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.video-link:hover { text-decoration: underline; }
/* Optional polish – blend header and card */
#known-issues-banner {
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  background: linear-gradient(to bottom, #f59e0b, #f59e0b);
}