/* Jira-inspired interactive resume surface */
body.jira {
  margin: 0;
  min-height: 100vh;
  font-family: var(--mono);
  color: var(--fg);
  background:
    radial-gradient(circle at 20% 20%, rgba(79, 195, 247, 0.08), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(156, 39, 176, 0.08), transparent 50%),
    var(--bg-teal);
}

body.jira * {
  box-sizing: border-box;
}

body.jira a {
  color: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.jira-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.75rem;
  background: rgba(5, 10, 14, 0.9);
  color: var(--fg);
  border-bottom: 1px solid rgba(79, 195, 247, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  position: sticky;
  top: 0;
  z-index: 20;
}

.jira-topbar__project {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.jira-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.04em;
  font-family: var(--display);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041029;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.35);
}

.jira-topbar__meta p {
  margin: 0;
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  color: rgba(233, 242, 255, 0.8);
}

.jira-topbar__meta strong {
  display: block;
  font-size: 1.05rem;
  font-family: var(--display);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jira-topbar__meta span {
  font-size: 0.8rem;
  color: rgba(233, 242, 255, 0.8);
}

.jira-topbar__actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.jira-topbar__view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 247, 0.3);
  background: rgba(4, 16, 41, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jira-topbar__view-toggle span {
  color: var(--fg-muted);
}

.jira-topbar__view-toggle button {
  border: none;
  border-radius: 999px;
  padding: 0.2rem 0.6rem;
  background: transparent;
  color: var(--fg);
  font-family: var(--mono);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.jira-topbar__view-toggle button.is-active {
  background: rgba(79, 195, 247, 0.2);
  color: var(--accent);
}

.jira-topbar__btn {
  border: 1px solid rgba(79, 195, 247, 0.4);
  border-radius: 999px;
  padding: 0.42rem 1.2rem;
  font-weight: 600;
  cursor: pointer;
  background: rgba(79, 195, 247, 0.15);
  color: var(--fg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  font-family: var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.jira-topbar__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(79, 195, 247, 0.25);
  border-color: var(--accent);
}

.jira-topbar__btn--ghost {
  background: transparent;
  border-color: rgba(255, 0, 168, 0.4);
  color: var(--accent-3);
}

.jira-shell {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  min-height: calc(100vh - 68px);
}

.jira-sidebar {
  padding: 2rem 1.5rem;
  background: rgba(5, 10, 14, 0.85);
  border-right: 1px solid rgba(79, 195, 247, 0.12);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: inset -8px 0 24px rgba(0, 0, 0, 0.35);
}

.jira-sidebar__eyebrow {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--fg-muted);
}

.jira-sidebar h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.jira-sidebar__section p {
  margin: 0.4rem 0 0;
  color: var(--fg-soft);
}

.jira-sidebar__nav {
  display: grid;
  gap: 0.4rem;
}

.jira-sidebar__nav button {
  border: 1px solid rgba(79, 195, 247, 0.12);
  border-radius: 10px;
  padding: 0.55rem 0.9rem;
  font-weight: 500;
  text-align: left;
  background: rgba(4, 16, 41, 0.4);
  cursor: pointer;
  color: var(--fg);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.jira-sidebar__nav button.is-active,
.jira-sidebar__nav button:hover {
  background: rgba(79, 195, 247, 0.12);
  border-color: rgba(79, 195, 247, 0.4);
  color: var(--accent);
}

.jira-sidebar__sprint {
  border-radius: 14px;
  border: 1px solid rgba(79, 195, 247, 0.16);
  background: rgba(13, 27, 42, 0.9);
  padding: 1rem;
  box-shadow: inset 0 0 12px rgba(0, 0, 0, 0.35);
}

.jira-sidebar__sprint h3 {
  margin: 0 0 0.6rem;
  font-size: 1rem;
  font-family: var(--display);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.jira-sidebar__sprint ul {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--fg-soft);
  display: grid;
  gap: 0.35rem;
}

.jira-sidebar__footer {
  margin-top: auto;
  font-size: 0.8rem;
  color: var(--fg-soft);
}

.jira-main {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: rgba(5, 10, 14, 0.82);
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.35);
}

.jira-nav {
  display: flex;
  gap: 0.5rem;
}

.jira-nav button {
  border: 1px solid rgba(79, 195, 247, 0.2);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  background: rgba(4, 16, 41, 0.5);
  cursor: pointer;
  color: var(--fg);
  font-weight: 500;
  font-family: var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.jira-nav button.is-active,
.jira-nav button:hover {
  background: rgba(79, 195, 247, 0.2);
  color: var(--accent);
  border-color: rgba(79, 195, 247, 0.45);
}

.jira-board-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.jira-board-head h1 {
  margin: 0.2rem 0 0.35rem;
  font-size: 2rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.jira-board-head p {
  margin: 0;
  color: var(--fg-soft);
}

.jira-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--fg-muted);
}

.jira-view-toggle {
  display: inline-flex;
  gap: 0.4rem;
  background: rgba(4, 16, 41, 0.6);
  border-radius: 999px;
  padding: 0.2rem;
  border: 1px solid rgba(79, 195, 247, 0.2);
}

.jira-view-toggle button {
  border: none;
  border-radius: 999px;
  padding: 0.35rem 0.95rem;
  cursor: pointer;
  background: transparent;
  color: var(--fg);
  font-weight: 600;
}

.jira-view-toggle button.is-active {
  background: var(--accent);
  color: #041029;
}

.jira-filters {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jira-statbar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}

.jira-stat {
  border-radius: 12px;
  background: rgba(13, 27, 42, 0.8);
  padding: 0.9rem 1rem;
  border: 1px solid rgba(79, 195, 247, 0.16);
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.35);
}

.jira-stat__label {
  display: block;
  font-size: 0.78rem;
  color: var(--fg-muted);
}

.jira-stat strong {
  font-size: 1.8rem;
  font-family: var(--display);
  letter-spacing: 0.1em;
}

.jira-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  align-items: center;
}

.jira-filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.jira-chip {
  border: 1px solid rgba(79, 195, 247, 0.3);
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  background: rgba(4, 16, 41, 0.5);
  cursor: pointer;
  font-size: 0.78rem;
  color: var(--fg);
}

.jira-chip.is-active,
.jira-chip:hover {
  background: rgba(79, 195, 247, 0.2);
  border-color: rgba(79, 195, 247, 0.6);
  color: var(--accent);
}

.jira-search {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.jira-search input {
  width: min(280px, 100%);
  border-radius: 999px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
  font-family: var(--mono);
  background: rgba(4, 16, 41, 0.5);
  color: var(--fg);
}

.jira-search input::placeholder {
  color: var(--fg-muted);
}

.jira-board-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.25rem;
  align-items: start;
}

.jira-board-surface {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.jira-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.jira-column {
  border-radius: 18px;
  background: rgba(13, 27, 42, 0.85);
  border: 1px solid rgba(79, 195, 247, 0.18);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.jira-column__head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: center;
}

.jira-column__head h3 {
  margin: 0.1rem 0 0;
  font-size: 1.15rem;
  font-family: var(--display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.jira-pill {
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.78rem;
  background: rgba(79, 195, 247, 0.12);
  color: var(--fg);
}

.jira-column__body {
  display: grid;
  gap: 0.75rem;
}

.jira-column__body:empty::after,
.jira-timeline:empty::after {
  content: "No stories match the current filters.";
  font-size: 0.85rem;
  color: var(--fg-muted);
  border: 1px dashed rgba(79, 195, 247, 0.25);
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
}

.jira-card {
  border-radius: 12px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  background: rgba(4, 16, 41, 0.75);
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  cursor: pointer;
  transition: border 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.jira-card:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.jira-card header {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--fg-muted);
}

.jira-card__summary {
  margin: 0;
  font-weight: 600;
  color: var(--fg);
}

.jira-card__meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--fg-soft);
}

.jira-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.jira-label {
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(79, 195, 247, 0.2);
  color: var(--fg);
}

.jira-timeline {
  border-radius: 18px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  background: rgba(5, 10, 14, 0.9);
  padding: 1rem 1.25rem 1.5rem;
  display: none;
  min-height: 320px;
  overflow-x: auto;
  position: relative;
  box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.4);
}

.jira-roadmap {
  --roadmap-label-width: 200px;
  min-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.jira-roadmap__axis {
  position: relative;
  height: 58px;
  border-bottom: 1px solid rgba(79, 195, 247, 0.2);
  margin-left: var(--roadmap-label-width);
  min-width: 1600px;
}

.jira-roadmap__tick {
  position: absolute;
  top: 6px;
  transform: translateX(-50%);
  text-align: center;
  font-size: 0.75rem;
  color: var(--fg-muted);
}

.jira-roadmap__tick:first-child {
  transform: none;
  left: 0;
  text-align: left;
}

.jira-roadmap__tick:last-child {
  transform: translateX(-100%);
  text-align: right;
}

.jira-roadmap__tick strong {
  display: block;
  font-size: 0.85rem;
  color: var(--fg);
}

.jira-roadmap__body {
  position: relative;
  padding-top: 0.5rem;
  margin-left: var(--roadmap-label-width);
  min-width: 1600px;
}

.jira-roadmap__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.jira-roadmap__gridline {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(79, 195, 247, 0.08);
}

.jira-roadmap__rows {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  z-index: 1;
}

.jira-roadmap__row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  position: relative;
}

.jira-roadmap__row-info {
  width: var(--roadmap-label-width);
  min-width: var(--roadmap-label-width);
  position: sticky;
  left: 0;
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.92));
  box-shadow: inset -1px 0 0 rgba(4, 16, 41, 0.08);
  z-index: 2;
  padding-right: 0.5rem;
}

.jira-roadmap__row-info span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #6b7c97;
}

.jira-roadmap__row-info strong {
  display: block;
  margin-top: 0.2rem;
  font-size: 1rem;
  color: #0b2b58;
}

.jira-roadmap__lane {
  flex: 1;
  position: relative;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(4, 16, 41, 0.02), rgba(4, 16, 41, 0.05));
  padding: 0.75rem 0;
  min-height: 72px;
}

.jira-roadmap__bar {
  position: absolute;
  height: 38px;
  border-radius: 12px;
  border: 1px solid rgba(15, 108, 240, 0.35);
  background: rgba(15, 108, 240, 0.18);
  color: #041029;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  cursor: pointer;
  overflow: hidden;
  text-align: left;
  font-family: inherit;
}

.jira-roadmap__bar:focus {
  outline: 2px solid rgba(15, 108, 240, 0.6);
  outline-offset: 2px;
}

.jira-roadmap__bar-label {
  position: relative;
  z-index: 1;
  font-size: 0.8rem;
  font-weight: 600;
}

.jira-roadmap__bar-progress {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(79, 195, 247, 0.4), rgba(79, 195, 247, 0.15));
  z-index: 0;
  pointer-events: none;
}

.jira-roadmap__bar--backlog {
  border-color: rgba(79, 195, 247, 0.5);
  background: rgba(79, 195, 247, 0.2);
}

.jira-roadmap__bar--active {
  border-color: rgba(15, 108, 240, 0.5);
  background: rgba(15, 108, 240, 0.18);
}

.jira-roadmap__bar--enablement {
  border-color: rgba(156, 39, 176, 0.4);
  background: rgba(156, 39, 176, 0.18);
}

.jira-roadmap__bar--done {
  border-color: rgba(13, 160, 123, 0.45);
  background: rgba(13, 160, 123, 0.18);
}

.jira-roadmap__bar--cta {
  border-color: rgba(255, 110, 199, 0.8);
  background: radial-gradient(circle at 30% 50%, rgba(255, 110, 199, 0.55), rgba(188, 39, 255, 0.35));
  color: #2b001e;
  box-shadow: 0 12px 28px rgba(255, 110, 199, 0.35);
}

.jira-roadmap__tooltip {
  position: absolute;
  pointer-events: none;
  background: #041029;
  color: #e9f2ff;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  box-shadow: 0 8px 18px rgba(4, 16, 41, 0.35);
  font-size: 0.75rem;
  max-width: 240px;
  opacity: 0;
  transform: translate(-999px, -999px);
  transition: opacity 0.12s ease;
  z-index: 5;
}

.jira-tooltip__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.62rem;
  color: rgba(233, 242, 255, 0.8);
}

.jira-roadmap__tooltip strong {
  display: block;
  font-size: 0.9rem;
  margin: 0.1rem 0;
}

.jira-roadmap__tooltip span {
  display: block;
  color: rgba(233, 242, 255, 0.8);
}

.jira-tooltip__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.4rem;
  font-size: 0.7rem;
  color: rgba(233, 242, 255, 0.8);
}

.jira-panel {
  border-radius: 18px;
  border: 1px solid rgba(79, 195, 247, 0.16);
  background: rgba(13, 27, 42, 0.85);
  padding: 1.25rem;
  position: sticky;
  top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.jira-panel__header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
}

.jira-panel__eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.68rem;
  color: var(--fg-muted);
}

.jira-panel__close {
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--fg-soft);
}

.jira-panel__body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-soft);
}

.jira-panel__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--fg-muted);
}

.jira-panel__body select {
  border-radius: 10px;
  border: 1px solid rgba(79, 195, 247, 0.2);
  padding: 0.45rem 0.6rem;
  font-family: var(--mono);
  background: rgba(4, 16, 41, 0.6);
  color: var(--fg);
}

.jira-panel__labels,
.jira-panel__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.jira-panel__chips .jira-chip {
  border-radius: 8px;
  padding: 0.2rem 0.6rem;
}

.jira-panel__highlights ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.jira-footer {
  margin-top: auto;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(79, 195, 247, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  color: var(--fg-soft);
}

.jira-footer__link {
  border-radius: 999px;
  padding: 0.5rem 1rem;
  background: rgba(79, 195, 247, 0.15);
  border: 1px solid rgba(79, 195, 247, 0.4);
  text-decoration: none;
  font-weight: 600;
  color: var(--fg);
}

.jira-shell[data-view="board"] .jira-timeline {
  display: none;
}

.jira-shell[data-view="timeline"] .jira-columns {
  display: none;
}

.jira-shell[data-view="timeline"] .jira-timeline {
  display: block;
}

/* Classic theme overrides */
body.jira.jira-theme-classic {
  font-family: "Inter", "Space Grotesk", "Share Tech Mono", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #041029;
  background: linear-gradient(180deg, #f4f7fb 0%, #e3eaf5 45%, #d7e3f2 100%);
}

body.jira.jira-theme-classic .jira-topbar {
  background: #041537;
  color: #e9f2ff;
  border-bottom: none;
  box-shadow: 0 8px 24px rgba(4, 16, 41, 0.35);
}

body.jira.jira-theme-classic .jira-topbar__view-toggle {
  border-color: rgba(4, 16, 41, 0.12);
  background: rgba(255, 255, 255, 0.14);
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-topbar__view-toggle span {
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-topbar__view-toggle button.is-active {
  background: #0f6cf0;
  color: #fff;
}

body.jira.jira-theme-classic .jira-topbar__btn {
  border: none;
  background: #0f6cf0;
  color: #fff;
  font-family: "Inter", "Space Grotesk", "Share Tech Mono", sans-serif;
}

body.jira.jira-theme-classic .jira-topbar__btn--ghost {
  background: transparent;
  border: 1px solid rgba(233, 242, 255, 0.4);
  color: #e9f2ff;
}

body.jira.jira-theme-classic .jira-sidebar {
  background: rgba(255, 255, 255, 0.8);
  border-right: 1px solid rgba(4, 16, 41, 0.08);
  box-shadow: none;
  color: #475972;
}

body.jira.jira-theme-classic .jira-sidebar__section p {
  color: #475972;
}

body.jira.jira-theme-classic .jira-sidebar h2 {
  letter-spacing: 0.06em;
  text-transform: none;
  color: #041029;
}

body.jira.jira-theme-classic .jira-sidebar__nav button {
  border: none;
  background: transparent;
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-sidebar__nav button.is-active,
body.jira.jira-theme-classic .jira-sidebar__nav button:hover {
  background: rgba(15, 108, 240, 0.12);
  color: #0b2b58;
}

body.jira.jira-theme-classic .jira-sidebar__sprint {
  background: #fff;
  border: 1px solid rgba(4, 16, 41, 0.08);
  box-shadow: none;
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-main {
  background: none;
  box-shadow: none;
}

body.jira.jira-theme-classic .jira-nav button {
  border: none;
  background: transparent;
  color: #4a617b;
  font-family: inherit;
  text-transform: none;
  letter-spacing: normal;
}

body.jira.jira-theme-classic .jira-nav button.is-active,
body.jira.jira-theme-classic .jira-nav button:hover {
  background: rgba(4, 31, 61, 0.1);
  color: #0b2b58;
  border: none;
}

body.jira.jira-theme-classic .jira-stat {
  background: #fff;
  border: 1px solid rgba(4, 16, 41, 0.08);
  box-shadow: none;
}

body.jira.jira-theme-classic .jira-stat__label {
  color: #6b7c97;
}

body.jira.jira-theme-classic .jira-stat strong {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
}

body.jira.jira-theme-classic .jira-chip {
  border: 1px solid rgba(4, 16, 41, 0.12);
  background: transparent;
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-chip.is-active,
body.jira.jira-theme-classic .jira-chip:hover {
  background: rgba(15, 108, 240, 0.12);
  border-color: rgba(15, 108, 240, 0.4);
  color: #0b2b58;
}

body.jira.jira-theme-classic .jira-search input {
  border: 1px solid rgba(4, 16, 41, 0.12);
  background: #fff;
  font-family: inherit;
  color: #041029;
}

body.jira.jira-theme-classic .jira-search input::placeholder {
  color: #6b7c97;
}

body.jira.jira-theme-classic .jira-column {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(4, 16, 41, 0.08);
  box-shadow: none;
}

body.jira.jira-theme-classic .jira-column__head h3 {
  font-family: "Space Grotesk", "Rajdhani", sans-serif;
  letter-spacing: 0;
  text-transform: none;
}

body.jira.jira-theme-classic .jira-pill {
  background: rgba(4, 16, 41, 0.08);
  color: #041029;
}

body.jira.jira-theme-classic .jira-column__body:empty::after,
body.jira.jira-theme-classic .jira-timeline:empty::after {
  color: #73809b;
  border-color: rgba(4, 16, 41, 0.2);
}

body.jira.jira-theme-classic .jira-card {
  border: 1px solid rgba(4, 16, 41, 0.12);
  background: #f9fbff;
  color: #041029;
}

body.jira.jira-theme-classic .jira-card header {
  color: #6b7c97;
}

body.jira.jira-theme-classic .jira-card__summary {
  color: #0b2b58;
}

body.jira.jira-theme-classic .jira-card__meta {
  color: #6b7c97;
}

body.jira.jira-theme-classic .jira-label {
  background: rgba(15, 108, 240, 0.12);
  color: #0b2b58;
}

body.jira.jira-theme-classic .jira-timeline {
  background: #fff;
  border: 1px solid rgba(4, 16, 41, 0.08);
  box-shadow: none;
}

body.jira.jira-theme-classic .jira-roadmap__axis {
  border-bottom: 1px solid rgba(4, 16, 41, 0.08);
}

body.jira.jira-theme-classic .jira-roadmap__gridline {
  background: rgba(4, 16, 41, 0.08);
}

body.jira.jira-theme-classic .jira-roadmap__row-info {
  background: transparent;
  box-shadow: none;
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-roadmap__lane {
  background: rgba(4, 16, 41, 0.02);
}

body.jira.jira-theme-classic .jira-roadmap__bar {
  border-color: rgba(4, 16, 41, 0.12);
  background: #f9fbff;
  color: #0b2b58;
  box-shadow: none;
}

body.jira.jira-theme-classic .jira-roadmap__bar--cta {
  border-color: rgba(255, 110, 199, 0.8);
  background: radial-gradient(circle at 30% 50%, rgba(255, 110, 199, 0.5), rgba(188, 39, 255, 0.35));
  color: #25001b;
}

body.jira.jira-theme-classic .jira-panel {
  background: #fff;
  border: 1px solid rgba(4, 16, 41, 0.08);
  box-shadow: none;
  color: #041029;
}

body.jira.jira-theme-classic .jira-panel__eyebrow,
body.jira.jira-theme-classic .jira-panel__label {
  color: #6b7c97;
}

body.jira.jira-theme-classic .jira-panel__body {
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-panel__body select {
  border: 1px solid rgba(4, 16, 41, 0.15);
  background: #fff;
  color: #041029;
  font-family: inherit;
}

body.jira.jira-theme-classic .jira-footer {
  border-top: 1px solid rgba(4, 16, 41, 0.08);
  color: #4a617b;
}

body.jira.jira-theme-classic .jira-footer__link {
  background: rgba(15, 108, 240, 0.12);
  border: 1px solid rgba(15, 108, 240, 0.3);
  color: #0b2b58;
}

@media (max-width: 1200px) {
  .jira-shell {
    grid-template-columns: 1fr;
  }

  .jira-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .jira-sidebar__section,
  .jira-sidebar__sprint {
    flex: 1 1 240px;
  }

  .jira-board-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .jira-panel {
    position: relative;
    top: auto;
    order: 3;
  }

  .jira-roadmap__axis,
  .jira-roadmap__body {
    min-width: 1200px;
  }
}

@media (max-width: 960px) {
  .jira-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jira-roadmap__row {
    flex-direction: column;
  }

  .jira-roadmap__row-info {
    width: 100%;
    min-width: auto;
    position: static;
    box-shadow: none;
    padding-right: 0;
  }

  .jira-roadmap__lane {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .jira-topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .jira-sidebar {
    padding: 1rem;
  }

  .jira-nav,
  .jira-filter-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .jira-columns {
    grid-template-columns: 1fr;
  }

  .jira-panel__header {
    flex-direction: column;
  }

  .jira-roadmap,
  .jira-roadmap__axis,
  .jira-roadmap__body {
    min-width: 720px;
  }
}
