/* General Styles */
body {
  background-color: #1e1e1e;
  color: #00ff00;
  font-family: "Courier New", Courier, monospace;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
a {
  text-decoration: none;
}


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

.video-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

.video-container iframe {
  width: 100%;
  max-width: 560px;
  height: 315px;
  border: none;
}

.responsive-button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s;
}

.simple-title {
  color: yellow;
}

.reach-me {
  background-color: #1e1e1e;
}

.responsive-button:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .responsive-button {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .responsive-button {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.terminal-header {
  color: yellow;
  text-align: center;
  margin-bottom: 10px;
}

.terminal-header .title {
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

/* Hide Scrollbar */
.terminal-body {
  background-color: #000;
  padding: 10px;
  border-radius: 5px;
  max-height: 70vh;
  overflow-y: scroll;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

.terminal-body::-webkit-scrollbar {
  display: none; /* Chrome, Safari, and Opera */
}

/* Search Bar Styling */
.search-container {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}

#search-input {
  width: 60%;
  padding: 10px;
  font-size: 16px;
  border: 2px solid #00ff00;
  border-radius: 5px;
  background-color: #1e1e1e;
  color: #00ff00;
  outline: none;
}

#search-btn {
  padding: 10px;
  margin-left: 10px;
  font-size: 16px;
  border: 2px solid #00ff00;
  border-radius: 5px;
  background-color: #00ff00;
  color: #1e1e1e;
  cursor: pointer;
}

.terminal-content {
  font-size: 1.1em;
  line-height: 1.5;
}

.command {
  margin-bottom: 10px;
}

.input-line {
  display: flex;
  align-items: center;
}

.prompt {
  margin-right: 10px;
}

#command-input {
  background-color: transparent;
  border: none;
  color: rgb(38, 0, 255);
  outline: none;
  font-size: 1.1em;
  font-family: "Courier New", Courier, monospace;
  width: 100%;
}

#output {
  margin-top: 20px;
  white-space: pre-wrap;
}
