
.dropdown-menu{
 max-height:200px;
overflow-y: scroll;
}

/* Style the input field */
input[type="text"] {
  width: 100%;               /* Full width */
  padding: 10px;             /* Inner spacing */
  margin: 8px 0;             /* Space around */
  border: 2px solid #ccc;    /* Light gray border */
  border-radius: 5px;        /* Rounded corners */
  font-size: 16px;           /* Text size */
  box-sizing: border-box;    /* Include padding in width */
  transition: border-color 0.3s, box-shadow 0.3s; /* Smooth effects */
}

/* Change style when focused */
input[type="text"]:focus {
  border-color: #4CAF50;     /* Green border */
  box-shadow: 0 0 5px rgba(76, 175, 80, 0.5); /* Glow effect */
  outline: none;             /* Remove default outline */
}

/* Placeholder text style */
input[type="text"]::placeholder {
  color: #999;
  font-style: italic;
}

body {
  background-image: url("../Backdrop.JPG");
}