.terminal-container {
  max-width: 640px;
  margin: 10px auto 10px 0;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.terminal-header {
  background-color: #f3f4f6;
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  gap: 6px;
  border-bottom: 1px solid #e5e7eb;
}
.terminal-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.terminal-dot.red {
  background-color: #ef4444;
  border: 1px solid rgba(220, 38, 38, 0.5);
}
.terminal-dot.yellow {
  background-color: #fbbf24;
  border: 1px solid rgba(234, 179, 8, 0.5);
}
.terminal-dot.green {
  background-color: #22c55e;
  border: 1px solid rgba(21, 128, 61, 0.5);
}
.terminal-title {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter",
    sans-serif;
  flex-grow: 1;
  text-align: center;
}
.terminal-title-spacer {
  width: 48px;
}
.terminal-body {
  padding: 16px;
}
.terminal-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.terminal-command-wrapper {
  flex: 1;
  overflow-x: auto;
  white-space: nowrap;
  padding: 8px 0;
}
.terminal-command-wrapper::-webkit-scrollbar {
  height: 4px;
}
.terminal-command-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.terminal-command-wrapper::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}
.terminal-command-wrapper::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}
.terminal-font {
  font-family: "SF Mono", Monaco, "Cascadia Code", "Roboto Mono", Consolas,
    "Courier New", monospace;
}
.terminal-command {
  font-size: 13px;
  color: #111827 !important;
}

.copy-button {
  flex-shrink: 0;
  font-size: 13px;
  padding: 6px 16px;
  background-color: #f3f4f6;
  color: #1f2937;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.15s;
  font-weight: 500;
}
.copy-button:hover {
  background-color: #e5e7eb;
}

.advantages-header {
  margin-top: 40px;
}

.advantages-list li {
  margin-bottom: 10px;
}
