/* vybestack.css */

*, *::before, *::after {
  box-sizing: border-box;
  color: #6a9955 !important;
}

a {
  color: #6a9955;
}

a:hover {
  color: #ff0000;
}

body {
  margin: 0;
  padding: 4rem 2rem;
  background-color: #000;
  color: #6a9955;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  line-height: 1.7;
  display: flex;
  flex-direction: column;
  align-items: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  position: relative;        
  width: min(95vw, 3200px);
  margin: 0 auto;
  padding: 2rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 2rem;
  color: #6a9955;
  letter-spacing: -0.5px;
}

h2,
h3,
h4 {
  color: #6a9955;
}

.section-date {
  font-size: 1.05rem;
  font-weight: 500;
  margin-left: 0.75rem;
  color: #6a9955 !important;
}

.site-version {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 0.75rem;
  border: 1px solid rgba(106, 153, 85, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6a9955 !important;
  background: rgba(106, 153, 85, 0.08);
  margin-bottom: 1.5rem;
}

p, ul {
  font-size: 1.15rem;
  font-weight: 400;
  color: #6a9955;
}

p.cta-lead {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.features {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.features li {
  margin-bottom: 0.75rem;
  color: #6a9955;
}

.cta {
  margin-top: 3rem;
}

form {
  display: flex;
  flex-direction: column;
  max-width: 100%;
}

input[type="email"] {
  background-color: #000;
  border: 1px solid #6a9955;
  color: #6a9955;
  padding: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
  margin-bottom: 1rem;
}

button {
  background-color: #66ff66;
  color: #000;
  font-size: 1rem;
  border: none;
  padding: 0.6rem 1.2rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: none;
}

button:hover {
  background-color: #85b47d;
}

footer {
  margin-top: 4rem;
  font-size: 1rem;
  opacity: 0.9;
  text-align: center;
  color: #6a9955;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}


.logo-wrapper {
  position: absolute;
  top: 0;
  left: -300px;              /
}

.logo-wrapper img {
  width: 100px;
  height: auto;
  opacity: 0.9;
  transition: opacity .2s;
}

.cli-box {
  position: absolute;
  top: 0;
  right: -360px;           
  background: #000;
  border: 1px solid rgba(106,153,85,.2);
  padding: 1.5rem;
  font: 1.1rem/1.6 "Courier New", monospace;
  color: #6a9955;
  border-radius: 4px;
  max-width: 360px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .logo-wrapper {
    position: static;
    margin: 0 auto 1.5rem;
    text-align: center;
  }
}

.grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .grid.two-column {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.card {
  border: 1px solid #6a9955;
  background: #000;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 16px 40px -28px rgba(106, 153, 85, 0.4);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card h3,
.card h4 {
  margin: 0;
  color: #6a9955;
}

.card .metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}

.metric {
  display: flex;
  flex-direction: column;
  font-size: 0.95rem;
}

.metric span {
  font-size: 1.4rem;
  font-weight: 600;
}

.badge-fail {
  color: #ff0000;
  font-weight: 600;
}

.badge-warn {
  color: #ffc966;
  font-weight: 600;
}

.timestamp {
  font-size: 0.9rem;
  opacity: 0.75;
}

.link-row {
  margin-top: 0.75rem;
}

.link-row a {
  color: #6a9955;
  text-decoration: underline;
  font-weight: 600;
}

.cell-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.version-tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.version-pill {
  border: 1px solid rgba(106, 153, 85, 0.7);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.version-pill.muted {
  border-color: rgba(106, 153, 85, 0.3);
  opacity: 0.6;
}

.table-wrapper {
  margin-top: 1.5rem;
  overflow-x: auto;
  border: 1px solid #6a9955;
  border-radius: 12px;
}

.table-wrapper.compact {
  margin-top: 1rem;
}

.table-wrapper.compact table {
  min-width: 100%;
}

table {
  width: 100%;
  min-width: min(1500px, 95vw);
  border-collapse: collapse;
  background: #000;
  color: #6a9955 !important;
}

table,
thead,
tbody,
th,
td {
  color: #6a9955 !important;
}

thead {
  background: rgba(106, 153, 85, 0.15);
}

th,
td {
  border-bottom: 1px solid rgba(106, 153, 85, 0.2);
  text-align: left;
  padding: 0.85rem 1rem;
  font-size: 0.98rem;
  color: #6a9955;
}

tbody tr:hover {
  background: rgba(106, 153, 85, 0.1);
}

tbody tr.selected-day,
#day-table tr.selected-day {
  background: rgba(102, 255, 102, 0.08);
}

#day-table tr.selected-day td {
  border-color: rgba(102, 255, 102, 0.35);
}

tbody tr[data-anchor] {
  cursor: pointer;
}

th.sortable {
  cursor: pointer;
  user-select: none;
}

th.sortable::after {
  content: '\2195';
  font-size: 0.8rem;
  margin-left: 0.4rem;
  opacity: 0.65;
}

th.sortable.asc::after {
  content: '\2191';
}

th.sortable.desc::after {
  content: '\2193';
}

.numeric,
th.numeric {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  min-width: clamp(7rem, 6vw, 14rem);
}

.notes-col {
  min-width: clamp(15rem, 18vw, 32rem);
  word-break: break-all;
  white-space: normal;
}

.run-log {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.run-day {
  border: 1px solid rgba(106, 153, 85, 0.35);
  border-radius: 16px;
  padding: 1.25rem;
  background: #000;
  box-shadow: 0 12px 32px -24px rgba(106, 153, 85, 0.8);
}

.run-day.active-day {
  border-color: rgba(102, 255, 102, 0.6);
  box-shadow: 0 0 0 1px rgba(102, 255, 102, 0.25), 0 12px 32px -24px rgba(106, 153, 85, 0.8);
}

.run-day-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(106, 153, 85, 0.2);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.run-day-head h3 {
  margin: 0;
}

.run-day-meta {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: right;
  align-items: flex-end;
}

.run-day-meta span {
  font-size: 0.95rem;
}

.run-day-summary {
  margin: 1rem 0;
}

.run-day-summary-head {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.run-day-highlight {
  box-shadow: 0 0 0 2px rgba(102, 255, 102, 0.4);
  transition: box-shadow 0.3s ease;
}

.run-cycle-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.run-cycle {
  border: 1px solid rgba(106, 153, 85, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: rgba(106, 153, 85, 0.04);
}

.run-cycle-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.run-cycle-head h4 {
  margin: 0;
  font-size: 1rem;
}

.run-cycle-head small {
  display: block;
  color: rgba(206, 255, 185, 0.8);
  font-size: 0.85rem;
}

.run-cycle-meta {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  align-items: flex-end;
  text-align: right;
}

.run-cycle-meta span {
  font-weight: 600;
}

.run-cycle-meta .version-tag-group {
  justify-content: flex-end;
}

.config-run-groups {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.run-config-group {
  border: 1px solid rgba(106, 153, 85, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  background: rgba(106, 153, 85, 0.04);
}

.run-config-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.run-config-head small {
  display: block;
  font-size: 0.8rem;
  color: rgba(206, 255, 185, 0.75);
}

.run-config-stats {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  text-align: right;
  font-size: 0.85rem;
  color: rgba(206, 255, 185, 0.85);
}

.run-config-head h4 {
  margin: 0;
  font-size: 1.05rem;
}

.config-command {
  font-size: 0.85rem;
  color: #6a9955;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.config-command details summary {
  cursor: pointer;
  text-decoration: underline;
  list-style: none;
}

.config-command details summary::marker,
.config-command details summary::-webkit-details-marker {
  display: none;
}

.config-command details summary::after {
  content: '▾';
  margin-left: 0.35rem;
  font-size: 0.75rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.config-command details[open] summary::after {
  transform: rotate(180deg);
}

.command-text {
  margin-top: 0.6rem;
  padding: 0.75rem;
  background: rgba(106, 153, 85, 0.08);
  border: 1px solid rgba(106, 153, 85, 0.25);
  border-radius: 8px;
  font-size: 0.85rem;
  line-height: 1.5;
  overflow-x: auto;
}

.command-actions {
  display: flex;
  gap: 0.6rem;
  align-items: center;
}

.command-actions .copy-command,
.command-actions .download-command {
  background: rgba(106, 153, 85, 0.12);
  border: 1px solid rgba(106, 153, 85, 0.4);
  color: #66ff66;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-decoration: none;
}

.command-actions .copy-command:hover,
.command-actions .download-command:hover {
  background: rgba(102, 255, 102, 0.2);
}

.run-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.run-card {
  border: 1px solid rgba(106, 153, 85, 0.35);
  border-radius: 12px;
  background: rgba(106, 153, 85, 0.05);
  overflow: hidden;
}

.run-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  align-items: center;
}

.run-card summary::marker,
.run-card summary::-webkit-details-marker {
  display: none;
}

.run-card[open] summary {
  border-bottom: 1px solid rgba(106, 153, 85, 0.2);
}

.run-summary-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.run-scenario-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.run-config {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.1rem 0.45rem;
  border-radius: 999px;
  background: rgba(106, 153, 85, 0.18);
  color: rgba(217, 255, 208, 0.9);
}

.run-profile {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(102, 255, 102, 0.85);
}

.run-summary-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  font-size: 0.95rem;
}

.run-score {
  font-weight: 700;
}

.run-score-raw {
  font-weight: 600;
  opacity: 0.85;
}

.run-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  border: 1px solid currentColor;
  background: rgba(255, 255, 255, 0.12);
}

.run-status-badge.badge-fail {
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.35);
}

.run-status-badge.badge-warn {
  background: rgba(255, 201, 102, 0.15);
  border-color: rgba(255, 201, 102, 0.35);
}

.run-details {
  padding: 1.2rem 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.run-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.65rem 1rem;
}

.run-meta strong {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(106, 153, 85, 0.85);
}

.run-meta span {
  font-size: 1.05rem;
  font-weight: 600;
}

.run-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}

.run-links a {
  color: #66ff66;
  font-weight: 600;
}

.run-command {
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

.run-command strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(106, 153, 85, 0.85);
  margin-bottom: 0.35rem;
}

.run-command code {
  display: block;
  background: rgba(2, 15, 2, 0.9);
  border: 1px solid rgba(106, 153, 85, 0.25);
  border-radius: 10px;
  padding: 0.7rem;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.35;
}

.run-modules strong {
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.run-modules {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.module-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.7rem;
  font-size: 0.85rem;
}

.module-grid span {
  border: 1px solid rgba(106, 153, 85, 0.25);
  border-radius: 8px;
  padding: 0.2rem 0.6rem;
  background: rgba(106, 153, 85, 0.08);
}

.run-notes {
  display: inline-block;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  margin-top: 0.25rem;
  border: 1px solid rgba(255, 0, 0, 0.35);
  background: rgba(255, 0, 0, 0.08);
}

.run-notes.badge-warn {
  border-color: rgba(255, 201, 102, 0.35);
  background: rgba(255, 201, 102, 0.15);
  color: #ffc966;
}

@media (max-width: 900px) {
  body {
    padding: 2rem 1rem;
  }
  .container {
    padding: 1.25rem;
    width: 100%;
  }
  table {
    min-width: 640px;
  }
}
  .cli-box {
    position: static;
    margin: 2rem 0 0;
    width: 100%;
    max-width: 100%;
  }
}

a {
  color: #00ff00;
  text-decoration: none;
}

a:visited {
  color: #6a9955;
}

a:hover {
  text-decoration: underline;
}

.blog-post p ,
.blog-post ul,
.blog-post li,
.blog-post h1,
.blog-post h2,
.blog-post h3 {
  color: #6a9955;
  background-color: #000;
}

.blog-post img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 2rem auto;
}

.blog-page {
  background-color: #000;
  position: relative;
    background-image: url('/assets/blog-bg.gif');
}
