/* Terminal Theme Base Styles */

/* Reset and Typography */
* {
  box-sizing: border-box;
}

body {
  font-family: 'JetBrains Mono', monospace !important;
  background: #0d1117 !important;
  color: #c9d1d9 !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1.5 !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  color: #00ff88;
  font-family: 'JetBrains Mono', monospace;
  text-shadow: 0 0 5px rgba(0, 255, 136, 0.3);
}

/* Main content area */
.terminal-main {
  min-height: calc(100vh - 60px);
  background: #0d1117;
  padding: 24px;
}

/* Cards */
.terminal-card {
  background: #161b22;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 16px;
  transition: all 0.2s ease;
}

.terminal-card:hover {
  border-color: #00ff41;
  box-shadow: 0 0 12px rgba(0, 255, 65, 0.1);
}

/* Quick stats */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.stat-item {
  background: #21262d;
  border: 1px solid #30363d;
  border-radius: 6px;
  padding: 16px;
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: bold;
  color: #00ff41;
  text-shadow: 0 0 8px rgba(0, 255, 65, 0.4);
}

.stat-label {
  font-size: 12px;
  color: #6e7681;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}