@font-face {
  font-family: "ojuxIconFont";
  src: url("./assets/fonts/ojuxIconFont_Rg.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --oracle-red: #c74634;
  --oracle-red-dark: #a83223;
  --neutral-0: #ffffff;
  --neutral-20: #fbf9f8;
  --neutral-30: #f5f4f2;
  --neutral-40: #efedea;
  --neutral-70: #d5d1cc;
  --neutral-110: #8b8580;
  --neutral-150: #4f4a45;
  --neutral-170: #312d2a;
  --neutral-190: #161513;
  --blue-110: #00688c;
  --blue-120: #005b79;
  --utility-bar: #3a3632;
  --focus: #227e9e;
  --success: #3a6a2d;
  --shadow: 0 8px 24px rgba(22, 21, 19, 0.12);
  font-family: "Oracle Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--neutral-190);
  background: var(--neutral-20);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--neutral-20);
  color: var(--neutral-190);
  font-size: 16px;
  line-height: 1.45;
}

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.site-header {
  background: var(--utility-bar);
}

.utility-bar {
  background: var(--utility-bar);
}

.utility-bar-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  max-width: 1360px;
  min-height: 68px;
  margin: 0 auto;
  padding: 0 26px;
}

.oracle-logo {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
}

.oracle-logo img {
  display: block;
  width: 42px;
  height: 42px;
}

.header-title {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: var(--neutral-0);
}

.header-title span {
  color: var(--neutral-0);
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}

.header-title strong {
  color: var(--neutral-0);
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}

.app-shell {
  max-width: 1360px;
  margin: 0 auto;
  padding: 28px 32px 48px;
}

.control-band {
  display: block;
  padding: 24px;
  background: var(--neutral-0);
  border: 1px solid var(--neutral-70);
}

.filter-intro {
  max-width: 980px;
  margin: 0 0 18px;
  color: var(--neutral-150);
  font-size: 15px;
  line-height: 1.45;
}

.filter-intro strong {
  color: var(--neutral-170);
  font-weight: 700;
}

.search-primary {
  margin-bottom: 18px;
}

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

.filter-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(160px, 1fr));
  gap: 18px;
  align-items: end;
}

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

label,
.eyebrow {
  color: var(--neutral-150);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

select,
input,
.select-like {
  width: 100%;
  min-height: 44px;
  color: var(--neutral-190);
  background: var(--neutral-0);
  border: 1px solid var(--neutral-110);
  border-radius: 3px;
  padding: 9px 38px 9px 12px;
}

select:focus,
input:focus,
button:focus-visible,
.select-like:focus {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

select,
.select-like {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--neutral-150) 50%),
    linear-gradient(135deg, var(--neutral-150) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.product-picker {
  position: relative;
}

.select-like {
  overflow: hidden;
  text-align: left;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.product-menu {
  position: absolute;
  z-index: 20;
  top: calc(100% + 6px);
  left: 0;
  width: min(460px, 92vw);
  max-height: 420px;
  display: none;
  background: var(--neutral-0);
  border: 1px solid var(--neutral-110);
  box-shadow: var(--shadow);
}

.product-picker[data-open="true"] .product-menu {
  display: block;
}

.menu-tools {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-bottom: 1px solid var(--neutral-70);
  background: var(--neutral-30);
}

.tool-buttons {
  display: flex;
  gap: 8px;
}

.tool-buttons button {
  min-height: 34px;
  padding: 6px 12px;
  color: var(--neutral-190);
  background: rgba(22, 21, 19, 0.06);
  border: 1px solid transparent;
  border-radius: 3px;
}

.tool-buttons button:hover {
  background: rgba(22, 21, 19, 0.1);
}

.product-list {
  max-height: 274px;
  overflow: auto;
  padding: 6px 0;
}

.product-option {
  display: grid;
  grid-template-columns: 20px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
}

.product-option:hover {
  background: var(--neutral-30);
}

.product-option input {
  width: 18px;
  min-height: 18px;
  padding: 0;
  accent-color: var(--neutral-190);
}

.product-option span {
  overflow-wrap: anywhere;
}

.feature-total {
  color: var(--neutral-150);
  font-size: 13px;
}

.report-summary {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin: 28px 0 18px;
}

.report-heading {
  min-width: 0;
}

.report-summary-tools {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: end;
  gap: 16px;
}

.report-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.report-action-button {
  min-height: 44px;
  padding: 9px 16px;
  color: var(--neutral-190);
  background: var(--neutral-0);
  border: 1px solid var(--neutral-110);
  border-radius: 3px;
}

.report-action-button:hover:not(:disabled) {
  background: var(--neutral-30);
}

.report-action-button:disabled {
  cursor: not-allowed;
  color: var(--neutral-150);
  background: var(--neutral-30);
}

h1 {
  margin: 2px 0 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.summary-metrics {
  display: flex;
  gap: 12px;
}

.summary-metrics div {
  min-width: 112px;
  padding: 10px 14px;
  background: var(--neutral-0);
  border: 1px solid var(--neutral-70);
}

.summary-metrics strong,
.summary-metrics span {
  display: block;
}

.summary-metrics strong {
  font-size: 22px;
  line-height: 1.1;
}

.summary-metrics span {
  color: var(--neutral-150);
  font-size: 13px;
}

.print-context {
  display: none;
}

.message {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: #fff8e8;
  border: 1px solid #d1b171;
  color: #5c4200;
}

.table-wrap {
  overflow: auto;
  background: var(--neutral-0);
  border: 1px solid var(--neutral-70);
}

table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--neutral-70);
  vertical-align: top;
  text-align: left;
}

th {
  position: sticky;
  top: 0;
  z-index: 1;
  color: var(--neutral-150);
  background: var(--neutral-30);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

tbody tr:hover {
  background: #f7fbfc;
}

td.product-cell {
  width: 210px;
  color: var(--neutral-170);
  font-weight: 600;
}

td.release-cell {
  width: 150px;
  color: var(--blue-120);
  font-weight: 600;
  white-space: nowrap;
}

td.extra-cell {
  width: 170px;
  color: var(--neutral-150);
}

.feature-title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.28;
}

.feature-description {
  color: var(--neutral-170);
  font-size: 15px;
}

.feature-description p,
.feature-description ul,
.feature-description ol {
  margin: 8px 0 0;
}

.feature-description p:first-child,
.feature-description ul:first-child,
.feature-description ol:first-child {
  margin-top: 0;
}

.feature-description ul,
.feature-description ol {
  padding-left: 22px;
}

.feature-description li + li {
  margin-top: 5px;
}

.text-underline {
  text-decoration: underline;
}

.empty-row td {
  padding: 36px 16px;
  color: var(--neutral-150);
  text-align: center;
}

mark {
  background: #fcefc1;
  color: inherit;
  padding: 0 2px;
}

.metadata-footer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--neutral-70);
  color: var(--neutral-190);
  font-size: 14px;
}

.metadata-footer summary {
  display: flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--neutral-190);
  cursor: pointer;
  list-style: none;
}

.metadata-footer summary::-webkit-details-marker {
  display: none;
}

.metadata-footer summary::before {
  content: "\f31e";
  display: inline-block;
  color: var(--blue-110);
  font-family: "ojuxIconFont";
  font-size: 14px;
  font-style: normal;
  font-variant: normal;
  font-weight: 400;
  letter-spacing: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.metadata-footer[open] summary::before {
  content: "\f2e9";
}

.metadata-footer-panel {
  padding: 16px 0 0 20px;
}

.metadata-footer p {
  margin: 0;
}

.metadata-footer p + p {
  margin-top: 8px;
}

.metadata-title {
  font-size: 15px;
  line-height: 1.35;
}

.metadata-title strong {
  font-weight: 700;
}

.metadata-copyright a {
  color: var(--blue-110);
  text-decoration: none;
}

.metadata-copyright a:hover {
  text-decoration: underline;
}

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

  .product-field {
    grid-column: span 2;
  }

  .report-summary {
    align-items: start;
    flex-direction: column;
  }

  .report-summary-tools {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 680px) {
  .utility-bar-inner,
  .app-shell {
    padding-left: 18px;
    padding-right: 18px;
  }

  .utility-bar-inner {
    gap: 16px;
    min-height: 64px;
  }

  .oracle-logo,
  .oracle-logo img {
    width: 38px;
    height: 38px;
  }

  .header-title span {
    font-size: 13px;
    line-height: 17px;
  }

  .header-title strong {
    font-size: 19px;
    line-height: 18px;
  }

  .control-band {
    grid-template-columns: 1fr;
    padding: 18px;
  }

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

  .product-field {
    grid-column: auto;
  }

  h1 {
    font-size: 26px;
  }

  .summary-metrics {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .summary-metrics div {
    min-width: 0;
  }
}

@media print {
  @page {
    margin: 0.55in;
  }

  :root,
  body {
    background: #ffffff;
    color: #000000;
  }

  body {
    min-width: 0;
    font-size: 10pt;
    line-height: 1.35;
  }

  .site-header,
  .control-band,
  .report-actions,
  .message {
    display: none !important;
  }

  .app-shell {
    max-width: none;
    margin: 0;
    padding: 0;
  }

  .report-summary {
    display: block;
    margin: 0 0 10px;
  }

  .report-heading .eyebrow {
    display: none;
  }

  h1 {
    margin: 0 0 8px;
    font-size: 18pt;
    line-height: 1.15;
  }

  .report-summary-tools {
    display: block;
  }

  .summary-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    margin: 8px 0 12px;
  }

  .summary-metrics div {
    min-width: 0;
    padding: 5px 8px;
    border: 1px solid #9d9892;
  }

  .summary-metrics strong {
    font-size: 14pt;
  }

  .summary-metrics span {
    color: #000000;
    font-size: 9pt;
  }

  .print-context {
    display: block;
    margin: 0 0 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #9d9892;
  }

  .print-context h2 {
    margin: 0 0 8px;
    font-size: 14pt;
    line-height: 1.2;
  }

  .print-context dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4px 16px;
    margin: 0;
  }

  .print-context div {
    break-inside: avoid;
  }

  .print-context dt,
  .print-context dd {
    display: inline;
    margin: 0;
  }

  .print-context dt {
    font-weight: 700;
  }

  .print-context dt::after {
    content: ": ";
  }

  .table-wrap {
    overflow: visible;
    border: 0;
  }

  table {
    min-width: 0;
    font-size: 9.5pt;
  }

  thead {
    display: table-header-group;
  }

  tr {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  th,
  td {
    padding: 7px 8px;
    border-bottom: 1px solid #c6c1bc;
  }

  th {
    position: static;
    top: auto;
    color: #000000;
    background: #ffffff;
    font-size: 9pt;
  }

  tbody tr:hover {
    background: transparent;
  }

  td.product-cell,
  td.release-cell,
  td.extra-cell {
    width: auto;
    color: #000000;
  }

  .feature-title {
    margin-bottom: 4px;
    font-size: 10.5pt;
    line-height: 1.2;
  }

  .feature-description {
    color: #000000;
    font-size: 9.5pt;
  }

  .feature-description p,
  .feature-description ul,
  .feature-description ol {
    margin-top: 5px;
  }

  mark {
    background: transparent;
    font-weight: 700;
  }

  .empty-row td {
    padding: 18px 8px;
  }

  .metadata-footer {
    margin-top: 14px;
    padding-top: 10px;
    border-top-color: #9d9892;
    font-size: 9.5pt;
  }

  .metadata-footer summary::before {
    display: none;
  }

  .metadata-footer-panel {
    padding: 8px 0 0;
  }

  .metadata-title {
    font-size: 10pt;
  }
}
