@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&display=swap');

body {
    padding: 1rem;
    background-color: #000; /* optional for terminal look */
}

* {
    color: white;
    font-family: 'JetBrains Mono', monospace;
}

*:focus {
    outline: none;
}

#output {
    width: 100%;
    height: 90vh;
    resize: none;
    background-color: #1c1c1c;
    padding: 5px 35px;
    box-sizing: border-box;
    font-size: 1rem;
    border-radius: 10px;
    border-width: 0.5px;
    border-color: #303030;
}

.input-container {
    display: flex;
    margin-top: 8px;
    gap: 8px;
    align-items: center;
}

#inputField {
    flex: 1;
    padding: 6px;
    font-size: 1rem;
    box-sizing: border-box;
    background-color: #1c1c1c;
    border: 1px solid #444;
    color: white;
    border-width: 0;
}

#executeButton {
    padding: 6px 16px;
    font-size: 1rem;
    cursor: pointer;
    background-color: #1c1c1c;
    border: 1px solid #444;
    color: green;
    border-width: 0;
}

/* Shell */

.window {
  width: 100%;
  margin: auto;
  border: 1px solid #444;
  border-radius: 8px;
  overflow: hidden;
  background-color: #1c1c1c;
}

.title-bar {
  height: 30px;
  background-color: #2b2b2b;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

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

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

.close {
  background-color: #ff5f56;
  position: relative;
  cursor: pointer;
}

.close::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 15px;
  font-family: Arial, sans-serif;
  display: none;
}

.close:hover::after {
  content: '×'; /* Unicode for X */
  color: black;
  display: block;
}

.minimize {
  background-color: #ffbd2e;
}

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

#output {
  width: 100%;
  height: 85vh;
  resize: none;
  border: none;
  padding: 1rem;
  font-family: monospace;
  font-size: 1rem;
  background-color: #1c1c1c;
  color: white;
  box-sizing: border-box;
}
