body {
  background-color: #0c0c0c;
  color: #00ff66;
  font-family: "Courier New", Courier, monospace;
  padding: 40px 20px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80vh;
}

.terminal-window {
  width: 100%;
  max-width: 800px;
  background-color: #151515;
  border: 1px solid #333;
  border-radius: 6px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
  overflow: hidden;
}

.terminal-header {
  background-color: #222;
  padding: 10px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  position: relative;
}

.terminal-buttons {
  display: flex;
  gap: 8px;
}

.btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}

.btn-close {
  background-color: #ff5f56;
}

.btn-minimize {
  background-color: #ffbd2e;
}

.btn-maximize {
  background-color: #27c93f;
}

.terminal-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #999;
  font-size: 13px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.terminal-body {
  padding: 25px;
  font-size: 16px;
  line-height: 1.6;
}

.cursor {
  display: inline-block;
  background-color: #00ff66;
  width: 8px;
  height: 17px;
  margin-left: 4px;
  animation: blink 1s step-end infinite;
  vertical-align: middle;
}

@keyframes blink {
  50% {
    background-color: transparent;
  }
}
.prompt {
  color: #00bfff;
  font-weight: bold;
}

.terminal-input-line {
  display: flex;
  padding: 0 25px 25px 25px;
}

#terminal-input {
  background: transparent;
  border: none;
  color: #00ff66;
  font-family: "Courier New", monospace;
  font-size: 16px;
  flex: 1;
  outline: none;
  margin-left: 10px;
}

.command-output {
  margin-bottom: 10px;
  color: #fff;
}

/*# sourceMappingURL=terminal.css.map */