:root {
  --primary-color: #007bff;
  --dark-bg: #1a1a1a;
  --light-bg: #f8f9fa;
  --border-color: #e0e0e0;
}
body {
  font-family:
    "Inter",
    -apple-system,
    sans-serif;
  margin: 0;
  padding: 0;
  background-color: var(--light-bg);
  color: #333;
}

/* 🟢 Navigation Bar */
.navbar {
  background-color: var(--dark-bg);
  color: white;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.nav-logo {
  font-weight: bold;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}
.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-item {
  margin-left: 20px;
}
.nav-link {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
  padding: 8px 12px;
  border-radius: 4px;
}
.nav-link:hover {
  color: white;
  background: rgba(255, 255, 255, 0.1);
}
.nav-link.active {
  color: white;
  border-bottom: 2px solid var(--primary-color);
  border-radius: 0;
}

/* 📦 Main Content Area */
.container {
  max-width: 1000px;
  margin: 30px auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* 🏗️ Grid for Responses */
.grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

h1 {
  color: var(--primary-color);
  border-bottom: 2px solid #eee;
  padding-bottom: 15px;
  margin-top: 0;
}
h2 {
  color: #333;
  margin-top: 30px;
  display: flex;
  align-items: center;
}
.method-badge {
  background: var(--primary-color);
  color: white;
  padding: 3px 10px;
  border-radius: 4px;
  font-size: 12px;
  vertical-align: middle;
}
pre {
  background: #272822;
  color: #f8f8f2;
  padding: 15px;
  border-radius: 6px;
  font-size: 13px;
  overflow-x: auto;
}
.copy-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  cursor: pointer;
  padding: 5px 10px;
  border-radius: 4px;
}
.status-tag {
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
}
.status-200 {
  background: #d4edda;
  color: #155724;
}
.status-400 {
  background: #fff3cd;
  color: #856404;
}
.method-badge {
  background: #007bff;
  color: white;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 14px;
  margin-right: 10px;
  text-transform: uppercase;
}
.endpoint-path {
  font-family: monospace;
  background: #eee;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 16px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}
th,
td {
  border: 1px solid #eee;
  padding: 12px;
  text-align: left;
}
th {
  background-color: #f8f9fa;
  color: #666;
}
