/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #1e1e1e;
  color: #00ff00;
  font-family: "Courier New", monospace;
  font-size: 16px;
  line-height: 1.5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.terminal {
  background-color: #000;
  border-radius: 5px;
  width: 90%;
  max-width: 800px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.terminal-header {
  background-color: #333;
  padding: 10px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.buttons {
  display: flex;
  gap: 5px;
}

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

.button.close { background-color: #ff5f56; }
.button.minimize { background-color: #ffbd2e; }
.button.maximize { background-color: #27c93f; }

.title {
  color: #ccc;
  font-size: 14px;
}

.terminal-body {
  padding: 20px;
  height: 400px;
  overflow-y: auto;
}

.command {
  color: #00ff00;
  font-weight: bold;
}

.input {
  color: #00ff00;
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}