body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Set minimum height of the body to 100% of the viewport height */

}
.header-logo {
  width: 50%;
  max-width: 400px; /* Limit the maximum width of the logo */
  height: auto;
  display: block;
  margin: 0 auto;
}

h1 {
  text-align: center;
  margin: 20px 0;
}

/* Add styles for the header logo */
.header-logo {
  width: 50%;
  max-width: 400px; /* Limit the maximum width of the logo */
  height: auto;
  display: block;
  margin: 0 auto;
}


.header-logo {
  width: 50%;
  max-width: 400px; /* Limit the maximum width of the logo */
  height: auto;
  display: block;
  margin: 0 auto;
}

/* Center the search container */
.search-container {
  display: flex;
  align-items: center; /* Center the items vertically */
  justify-content: center; /* Center the items horizontally */
  margin: 20px 0;
  flex-wrap: wrap; /* Allow elements to wrap on smaller screens */
}

#search-input {
  padding: 5px;
  font-size: 16px;
  width: 100%; /* Set the width to 100% on small screens */
  max-width: 200px; /* Limit the maximum width to 200px */
  margin-right: 10px;
}

#search-option {
  margin-right: 10px; /* Add some right margin to create a gap */
}

#search-button {
  padding: 5px 10px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
}

.results-container {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
  position: relative;
 
}
.no-results {
  text-align: center;
  max-width: 300px; /* Adjust the maximum width as per your preference */
  margin: 0 auto;
}
.result-item {
  font-family: "Jost", Arial, sans-serif;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
  margin: 10px;
  display: flex; /* Add flex display */
  flex-direction: column; /* Adjust flex direction to column to center text */
  align-items: center; /* Center content horizontally */
}

.result-item img {
  width: 30%;
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 10px;
}
.future-date-yes {
  background-color: green;
  color: white;
  padding: 5px;
  border-radius: 5px;
}

.future-date-no {
  background-color: red;
  color: white;
  padding: 5px;
  border-radius: 5px;
}
.anno {
  text-align: center;
  color: green;
  padding: 5px;
  border-radius: 5px;
}
footer {
  background-color: #f5f5f5;
  padding: 10px;
  text-align: center;
  margin-top: auto; /*Push the footer to the bottom of the page */

}

.footer-text {
  font-size: 10px;
  margin: 0;
}
/* Media query for small screens */
@media (max-width: 768px) {
  .results-container {
    flex-direction: column;
  }

  .result-item {
    font-family: "Jost", Arial, sans-serif;
    max-width: 100%;
  }

  /* Center the search result box on small screens */
  .results-container {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
  }
  .search-container {
    flex-direction: column; /* Revert to row layout on small screens */
    justify-content: center; /* Center the items horizontally */
  }
  .result-item img {
    width: 50%;
  }

  .search-container {
    flex-direction: column;
    margin-bottom: 20px; /* Stack elements in a column on smaller screens */
  }
  #search-input {
    max-width: 200px;
    margin-bottom: 10px; 
  }

  #search-button {
    margin-top: 10px; /* Add top margin to move the button down */
  }

  #search-option {
    margin-right: 0; /* Remove right margin for the dropdown on smaller screens */
    margin-bottom: 10px; /* Add bottom margin to create a gap below the dropdown */
  }
}

@media (min-width: 768px) {
  #search-input {
    width: 200px; /* Set the width to 200px on desktop screens */
  }
}
#search-option {
  padding: 10px 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

#search-option:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

#search-button {
  padding: 10px 20px;
  font-size: 18px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

#search-button:hover {
  background-color: #0056b3;
  transform: scale(1.1);
  
}
/* Existing CSS styles... */
