/* Terminal-style breadcrumb navigation */

.breadcrumb {
  width: 100%;
  padding: 15px 20px;
  text-align: center;
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 14px;
  color: #555;
  background-color: transparent;
}

.breadcrumb a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: 'Courier New', 'Courier', monospace;
}

.breadcrumb a:hover {
  color: #ff4826;
  text-decoration: underline;
  font-family: 'Courier New', 'Courier', monospace;
  font-weight: bold;
}

.breadcrumb-separator {
  margin: 0 5px;
  color: #999;
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
  .breadcrumb {
    color: #888;
  }

  .breadcrumb a {
    color: #888;
  }

  .breadcrumb a:hover {
    color: #ff8563;
  }

  .breadcrumb-separator {
    color: #666;
  }
}
