@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@200..900&display=swap");


.vt323-regular {
  font-family: "VT323", monospace;
  font-weight: 400;
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Source Code Pro", monospace;
}

body {
  position: relative;
  width: 100vw;
  height: 100vh;
  background-color: #434343;
  background-image: radial-gradient(#616161 1px, #000000 1px);
  background-size: 30px 30px;
}

.center-vertical {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  height: 100%;
  color: white;
}

.green {
  color: #2acd41;
}

.blue {
  color: #1e90ff;
}

.window {
    position: relative;
    /* Existing styles */
    transform: translate(10%, 20%);
    width: 80%;
    max-width: 500px;
    height: 70%;
    max-height: 500px;
    min-height: 110px;
    min-width: 140px;
        background-color: #1c1d1fe6;
    border-radius: 10px;
        box-shadow: 0 0 16px 0px rgb(0 255 5 / 38%);
    display: flex;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    resize: both;
}
/* Style for the GIF image */
.top-right-gif {
        position: absolute;
    top: 10px;
    right: 27px;
    width: 64px;
    height: auto;
}

.header {
  width: 100%;
  height: 56px;
  display: flex;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  background-color: #242426;
  cursor: grab;
}

.nav-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.btn {
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
}

.btn .icon {
  opacity: 0;
}

.btn:hover .icon {
  opacity: 1;
}

.btn:nth-child(1) {
  background-color: #f76158;
}

.btn:nth-child(2) {
  background-color: #fbbe2d;
}

.btn:nth-child(3) {
  background-color: #2acd41;
  padding: 1.5px;
}

.arrows-in {
  transform: rotate(-45deg);
  display: none;
}

.arrows-out {
  transform: rotate(45deg);
}

.icon {
  stroke-width: 2.5px;
}

.header:active {
  cursor: grabbing;
}

.terminal {
  height: 100%;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}

.magic-response {
  width: 100%;
  font-size: 1.25rem;
  color: #ffffff;
  overflow-wrap: anywhere;
  overflow-y: auto;
  opacity: 0.4;
}

input {
  width: 100%;
  height: 30px;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 1.25rem;
  color: white;
  caret-color: transparent;
  cursor: default;
  pointer-events: none;
}

.cursor {
  width: 10px;
  height: 26px;
  background-color: white;
  position: absolute;
  left: 11px;
  bottom: 12px;
  opacity: 0;
}

/* Media queries for small screens */
@media screen and (max-width: 600px) {
  .window {
    width: 90%;
    height: 80%;
    transform: translate(5%, 10%);
  }

  .header {
    height: 50px;
    padding-left: 10px;
  }

  .magic-response,
  input {
    font-size: 1rem;
  }
}

.nav-btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

/* Updated Button Styles */
.btn {
  width: 14px;
  height: 14px;
  border-radius: 9999px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1px;
}

.btn .icon {
  opacity: 0;
}

.btn:hover .icon {
  opacity: 1;
}

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

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

.btn.expand {
  background-color: #2acd41;
  padding: 1.5px;
}

.btn.reset {
  background-color: #1e90ff; /* Blue color for reset */
}