body {
  background-image: url("images/kali-waves.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  font-family: "Courier New", Courier, monospace;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: transparent;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.terminal-init {
  width: 90%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .terminal-init {
    width: 75%; /* Lebar untuk tablet */
  }
}

@media (min-width: 1024px) {
  .terminal-init {
    width: 60%; /* Lebar untuk desktop */
    max-width: 48rem;
  }
}

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

.terminal-header .button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}

.terminal {
  height: 80vh;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 0 0 5px 5px;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  margin: 0 auto;
}

.terminal.visible {
  opacity: 1;
}

.terminal-users {
  color: #27c93f;
}

.icon {
  visibility: hidden;
  cursor: pointer;
}

@media (min-width: 640px) {
  .icon {
    visibility: unset;
    width: 50px; /* Ukuran untuk tablet dan desktop */
    height: 50px;
    margin: 35px 10px;
  }
}

@media (min-width: 1024px) {
  .icon:hover {
    transition: ease-in-out 0.15s;
    width: 60px; /* Ukuran hover untuk tablet dan desktop */
    height: 60px;
    margin: 35px 10px;
  }
}

.button.red {
  background-color: #ff5f56;
}

.button.yellow {
  background-color: #ffbd2e;
}

.button.green {
  background-color: #27c93f;
}
