/* Container block for each system item */
.system-card {
  padding-bottom: 3px;
  font-family: monospace;
}

.system-card:hover {
  background-color: #222222; /* Clean row highlight on hover */
}

/* Flexbox forces Title to the far left and Date to the far right on one single line */
.system-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
}

/* System Title: Big, bold, crisp terminal emerald green */
.system-title {
  margin-left: 4px;
  font-size: 14px;
  font-weight: bold;
  color: #34d399; 
  letter-spacing: 0.5px;
}

/* System Date: Muted charcoal gray, wrapped in your new parenthesis design */
.system-date {
  margin-right: 4px;
  font-size: 12px;
  color: #737373;
}

/* Expanded Details Box layout details */
.details-drawer {
  margin-top: 10px;
  padding-left: 12px;
  border-left: 2px solid #10b981; /* Solid emerald border bar on the left */
  font-size: 13px;
  color: #d4d4d4; /* Soft white/gray for readable prose */
  line-height: 1.5;
}

/* Clean blue links for the wiki pop-out action */
.wiki-link {
  color: #60a5fa;
  text-decoration: none;
  font-size: 12px;
}

.wiki-link:hover {
  text-decoration: underline;
}

/* The core visibility utility class used by the toggle script */
.hidden {
  display: none !important;
}

/* ==========================================================================
   1. DEFAULT UNHOVERED STATE (High contrast on your default light row bg)
   ========================================================================== */

/* The Keys: Dark, crisp charcoal so it pops off the light background */
.details-drawer strong {
  color: #171717; /* Near-black / dark charcoal */
  font-weight: bold;
  transition: color 0.15s ease-in-out;
}

/* The Values: A slightly lighter slate gray to visually separate from the keys */
.details-drawer p {
  margin: 6px 0;
  color: #525252; /* Muted mid-gray for prose text */
  transition: color 0.15s ease-in-out;
}

/* ==========================================================================
   2. HOVERED STATE CASCADE (Snaps to full terminal glow on dark hover bg)
   ========================================================================== */

/* When hovered, the Keys shift to a bright mint/green to match the layout aesthetic */
.system-card:hover .details-drawer strong {
  color: #a7f3d0; /* Soft emerald/mint green for the labels */
}

/* When hovered, the Values shift instantly to your perfect soft gold */
.system-card:hover .details-drawer p {
  color: #eab308; /* Your soft gold glows flawlessly against the dark hover matrix */
}
