/*
Developer Intelligence Dashboard
https://blackravenwolf.github.io/dev-dashboard/

Copyright (c) 2026 Dominique Striekwold

Licensed under the MIT License.
See the LICENSE file in the repository for details.
*/

body {
  font-family: Arial, sans-serif;
  background: #0f172a;
  color: #f8fafc;
  margin: 0;
}

.site-header {
  background: #1e293b;
  text-align: center;
  padding: 40px 20px;
  border-bottom: 2px solid #334155;
}

.site-header h1 {
  margin: 0 0 12px 0;
  font-size: 32px;
}

.subtitle {
  margin: 0 auto;
  max-width: 700px;
  color: #cbd5e1;
  line-height: 1.6;
}

.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px;
}

.intro-card {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.intro-card h2 {
  margin-top: 0;
  color: #60a5fa;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

.section {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.section h2 {
  margin-top: 0;
  margin-bottom: 8px;
  color: #60a5fa;
}

.section-count {
  margin: 0 0 16px 0;
  color: #94a3b8;
  font-size: 14px;
}

.section ul {
  margin: 0;
  padding-left: 20px;
}

.section li {
  margin-bottom: 10px;
  line-height: 1.5;
}

a {
  color: #93c5fd;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-footer {
  text-align: center;
  padding: 20px;
  color: #94a3b8;
}


/* Tablet layout */

@media (max-width: 900px) {
  .dashboard-grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Mobile layout */

@media (max-width: 600px) {
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}