body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding: 0;
  margin: 0;
  background-color: #0084ff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  opacity: 0.1;
}

h2 {
  margin-bottom: 20px;
  color: white;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-style: italic;
}

.form-group {
  margin-bottom: 30px;
}

input[type="text"] {
  width: 50%;
  padding: 8px;
  font-size: 18px;
  border: 1px solid #ccc;
  font-family: Arial, Helvetica, sans-serif;
  border-radius: 4px;

  text-align: center;
}
input[type="text"]:hover,
input[type="text"]:active {
  transform: scale(1.1);
  padding: 12px 30px;
}

input[type="text"]::placeholder {
  color: #000000;
}

input[type="submit"] {
  background-color: #ffd700;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  width: 240px;
}

input[type="submit"]:hover {
  background-color: #cbb346;
}

.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  z-index: 1000;
}

.btn-orange {
  background-color: #ffbd59 !important;
  margin-right: 10px;
  margin-left: 10px;
}

.btn-orange:hover,
.btn-orange:active {
  transform: scale(1.1);
  padding: 12px 30px;
}

.content {
  margin-top: 20px;
  color: white;
}

#loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #007bff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.loading-bar-container {
  width: 50%;
  text-align: center;
}

#loading-bar {
  width: 0;
  height: 20px;
  background-color: #ff3131;
  transition: width 10s linear, background-color 10s linear;
}

#loading-text {
  color: yellow;
  margin-top: 10px;
  font-weight: 700;
  font-size: 22px;
}

#searching-text {
  color: white;
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

#not-found-message {
  color: #e0ffff;
  text-align: center;
  padding: 10px;
  font-size: 16px;
}

.custom-link {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  display: inline-block; /* Needed for transform to work properly */
  padding: 10px 20px; /* Set initial padding */
  transition: all 0.3s ease; /* Smooth animation for padding & transform */
}

.custom-link:hover,
.custom-link:active {
  transform: scale(1.1);
  padding: 12px 30px;
}


/* Mobile-specific styles */
@media (max-width: 768px) {
  .logo-img {
    width: 50%; /* Adjust logo size for tablets */
  }

  .loading-bar-container {
    width: 80%; /* Make loading bar container responsive */
  }

  .input-text,
  .submit-btn {
    width: 100%; /* Full width for input and button */
    font-size: 16px; /* Adjust font size */
  }

  h2 {
    font-size: 18px; /* Adjust heading size */
  }

  #not-found-message {
    font-size: 14px; /* Slightly smaller font for mobile devices */
    padding: 8px; /* Adjust padding for smaller screens */
  }
}

@media (max-width: 480px) {
  .logo-img {
    width: 70%; /* Further adjust logo size for mobile phones */
  }

  .loading-bar-container {
    width: 90%; /* Further adjust loading bar container width */
  }

  .input-text,
  .submit-btn {
    font-size: 14px; /* Adjust font size for mobile */
  }

  h2 {
    font-size: 16px; /* Adjust heading size */
  }

  #loading-text {
    font-size: 12px; /* Adjust font size for loading text */
  }

  #not-found-message {
    font-size: 12px; /* Even smaller font for very small screens */
    padding: 6px; /* Less padding for very small screens */
  }
  #adsense-banner
  {
    display: none;
  }
}
