/* .input-container {
  display: flex;
  gap: 10px;
}

.input-box {
  width: 100%;
}
.abc {
  color: #ffffff;
}
@media screen and(min-width: 1000px) {
  #latch-screen {
    width: 40%;
  }
}
#toggleRedBlue {
  background-color: #006bbd;
  color: white;
  width: 125px;
}
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  display: none;
} */

/* General Styles */
.body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  color: #333;
  margin: 0;
  padding: 0;
}

.abc {
  color: #ffffff;
  background-color: #333;
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select,
button {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
  font-size: 16px;
}

button {
  background-color: #006bbd;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #0056a3;
}
.btn-green {
  background-color: green;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-green:hover {
  background-color: rgb(1, 87, 1);
}

.btn-red {
  background-color: red;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-red:hover {
  background-color: rgb(134, 1, 1);
}

.btn-blue {
  background-color: blue;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.btn-blue:hover {
  background-color: blue;
}

#toggleRedBlue {
  background-color: #006bbd;
  color: white;
  width: 125px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .abc {
    padding: 15px;
  }

  input,
  select,
  button {
    font-size: 14px;
  }
}

/* Hide scrollbar */
* {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

::-webkit-scrollbar {
  display: none;
}

/* Additional Styles for Better Appearance */
#latch-screen {
  margin-top: 20px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

datalist {
  display: none;
}

.main {
  margin-top: 120px;
}
