:root {
  --bg-color: #ffffff;
  --text-color: #333333;
  --primary-color: #0066cc;
  --border-color: #cccccc;
  --code-bg: #f5f5f5;
  --header-bg: #f8f9fa;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
}

header {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
  background-color: var(--header-bg);
  padding-top: 20px;
  text-align: center;
}

h1 {
  margin: 0;
  color: #000;
}

h2 {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 5px;
  margin-top: 40px;
  color: #000;
}

h3 {
  color: var(--primary-color);
  margin-top: 25px;
  margin-bottom: 15px;
}

.btn-download {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 15px;
  font-weight: bold;
}

.btn-download:hover {
  background-color: #004c99;
}

.command-section {
  margin-bottom: 30px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin: 15px 0;
}

th,
td {
  border: 1px solid var(--border-color);
  padding: 10px;
  text-align: left;
}

th {
  background-color: var(--header-bg);
  font-weight: bold;
}

.cmd-name {
  font-family: monospace;
  font-weight: bold;
  color: #d63384;
  /* Pinkish red for commands to stand out slightly */
}

code,
pre {
  font-family: Consolas, "Courier New", monospace;
  background-color: var(--code-bg);
}

code {
  padding: 2px 5px;
  border-radius: 3px;
}

pre {
  padding: 15px;
  border: 1px solid var(--border-color);
  overflow-x: auto;
}

.note {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 15px;
  margin: 20px 0;
  border-radius: 4px;
}

/* Theme Toggle Button */
.theme-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
  color: #333;
  transition: transform 0.3s ease;
}

/* Dark Mode Variables */
body.dark-mode {
  --bg-color: #1a1b1e;
  --text-color: #e4e5e7;
  --primary-color: #5c93ff;
  --border-color: #2c2e33;
  --code-bg: #25262b;
  --header-bg: #141517;
}

body.dark-mode h1,
body.dark-mode h2 {
  color: #ffffff;
}

body.dark-mode .cmd-name {
  color: #ff8787;
}

body.dark-mode .note {
  background-color: #342a1d;
  border-color: #665235;
  color: #fcc419;
}

body.dark-mode .theme-toggle {
  background: #25262b;
  border-color: #2c2e33;
}

body.dark-mode .theme-toggle svg {
  color: #e4e5e7;
}