.terminal-window {
  margin: 14px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: #0c0c0c;
}
.terminal-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #161616;
  border-bottom: 1px solid var(--glass-border);
}
.terminal-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}
.terminal-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.terminal-dots .dot.red { background: #ff5f56; }
.terminal-dots .dot.yellow { background: #ffbd2e; }
.terminal-dots .dot.green { background: #27ca40; }
.terminal-title {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}
.terminal-body {
  padding: 14px 16px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.7;
}
.terminal-line {
  margin-bottom: 4px;
  color: #d4d4d4;
  white-space: pre;
}
.terminal-prompt {
  color: #666;
  margin-right: 8px;
}
.terminal-table {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  margin: 8px 0;
}
.terminal-table-row {
  display: grid;
  grid-template-columns: 70px 90px 70px 50px 30px 30px;
  color: #d4d4d4;
}
.terminal-table-header {
  color: #888;
  border-bottom: 1px dashed #444;
  padding-bottom: 4px;
  margin-bottom: 4px;
}
.powershell-window {
  margin: 14px 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(1, 36, 86, 0.3);
  background: #012456;
}
.powershell-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: #001a3a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.powershell-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.powershell-icon svg {
  width: 16px;
  height: 16px;
  fill: #2671be;
}
.powershell-title {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Cascadia Mono', 'Consolas', 'Courier New', monospace;
}
.powershell-body {
  padding: 14px 16px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 1px;
  background: #012456;
}
.ps-line {
  margin-bottom: 2px;
  color: #cccccc;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}
.ps-prompt {
  color: #ffff00;
  margin-right: 4px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}
.ps-comment {
  color: #2e7d32;
  font-style: normal;
  margin: 4px 0 2px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: 1px;
}