* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

.search-container {
  max-width: 300px; /* Increased max-width for better visibility */
  margin: 20px auto;
}

.search-container form {
  display: flex;
  align-items: center;
  background-color: #028BEF;
  border-radius: 10px;
  overflow: hidden;
}

.search-container input[type="text"] {
  flex-grow: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: none;
  background-color: white;
  color: #F48634;
  outline: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.search-container input[type="text"]::placeholder {
  color: #F48634; /* Matching placeholder color */
}

.search-container input[type="text"]:focus {
  outline: 2px solid #028BEF; /* Blue outline on focus */
}

.search-container button {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px; /* Increased width for better icon spacing */
  height: 100%;
  border: none;
  background-color: #028BEF;
  cursor: pointer;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.search-container button img {
  width: 20px;
  height: 20px;
  filter: invert(1); /* Keeping the inverted color for contrast */
}

.error-container {
    text-align: center;
}

.error-404 {
    font-size: 8em;
    font-weight: bold;
    color: #F48634;
    animation: bounce 2s infinite;
}

.error-text {
    font-size: 2em;
    margin-top: -20px;
    color: #333;
}

.error-link {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #028BEF;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.error-link:hover {
    background-color: #028BEF;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}
/* styles.css */
.slider {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.slides {
  display: flex;
}

.slides img {
  width: 100%;
  height: auto;
  display: none;
}

.slides img:first-child {
  display: block;
}

button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  cursor: pointer;
  padding: 12px;
  z-index: 1;
}

button.prev {
  left: 12px;
}

button.next {
  right: 12px;
}
 /* CSS styles can be included here or linked externally */
  .inline-images {
    margin-bottom: 10px; /* Optional: Adjust spacing between paragraphs */
  }

  .inline-images a {
    display: inline-block; /* Ensure images are inline */
    margin-right: 10px; /* Adjust spacing between images */
  }

  .inline-images a img {
    max-width: 100px; /* Adjust maximum width of images */
    height: auto; /* Maintain aspect ratio */
    vertical-align: middle; /* Align images vertically with text */
  }
.download-button {
  display: inline-block; /* Allows for margin and padding */
  font-family: "Poppins", sans-serif; /* Sets the font family */
  font-size: 16px; /* Sets the font size */
  font-weight: 500; /* Sets the font weight */
  padding: 10px 20px; /* Adds padding inside the button */
  color: #fff; /* Sets text color to white */
  background-color: #028BEF; /* Sets background color */
  border: none; /* Removes default border */
  border-radius: 4px; /* Rounds the corners */
  cursor: pointer; /* Changes cursor to pointer on hover */
  text-align: center; /* Centers the text */
  text-decoration: none; /* Removes underline */
  transition: background-color 0.3s ease; /* Adds transition for hover effect */
}

.download-button:hover {
  background-color: #026BBE; /* Darkens the background color on hover */
}
