/* sysinfo page styles */

:root {
  --card-bg: #ffffff;
  --item-bg: #f8f9fa;
  --item-hover-bg: #e9ecef;
  --text-primary: #212529;
  --text-secondary: #495057;
  --accent-color: #3f51b5;
}

.dark-mode {
  --card-bg: #2b2d42;
  --item-bg: #37394d;
  --item-hover-bg: #45475d;
  --text-primary: #f8f9fa;
  --text-secondary: #adb5bd;
  --accent-color: #3F8CB5;
}

nav {
  background-color: #3F51B5;
}

.topnotes {
  position: absolute;
  float: left;
  width: 100%;
  margin-bottom: 10px;
  background-color: #f9edbe;
  text-align: center;
  padding: 0 10px;
  font-weight: 400;
}

h2 {
  margin: 0 0;
  color: var(--text-primary);
}

#debug-container {
  max-width: 800px;
  margin: 8vh auto;
  padding: 20px;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.debug-group-header {
  margin: 25px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.debug-group-header:first-child {
  margin-top: 0;
}

.debug-info {
  display: flex;
  justify-content: space-between;
  padding: 8px 15px;
  margin: 4px 0;
  background: var(--item-bg);
  border-radius: 8px;
  transition: all 0.2s ease;
}

.debug-info:hover {
  background: var(--item-hover-bg);
  transform: translateX(2px);
}

.debug-name {
  font-weight: 500;
  color: var(--text-primary);
}

.debug-value {
  font-weight: 400;
  color: var(--text-secondary);
  text-align: right;
}

.dark-mode .debug-info {
  color: #fafafa;
}

.content {
  display: none;
}

@media screen and (max-width: 800px) {
  #debug-container {
    margin: 8vh 1em;
  }
}
