
body {
    font-family: 'special_eliteregular', sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color:  rgb(255, 255, 255);
    position: relative;
}

.logo {
    position: absolute;
    top: 10%;  /* Adjust as needed */
    left: 10%; /* Adjust as needed */
    color: rgb(54, 136, 156);
    font-family: 'ronnftregular', sans-serif;
   
    padding: 0;
    font-size: 5em;
  }
  

  .container {
    text-align: center;
    padding: 8px;
    width: 50%;
    max-width: 550px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 170px;
    z-index: 2;
}

.search-box {
    position: relative; /* Ensure that the icon can be positioned absolutely within the search box */
    width: 70%;
    margin-top: 20px;
}

input[type="text"] {
    width: 100%;
    padding: 10px 10px 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    outline: none;
    background-color: #e0e0e0;
    z-index: 3;
    font-size: 14px;
}

.search-box i {
    position: absolute; /* Use absolute positioning */
    left: 10px; /* Distance from the left of the input */
    top: 50%; /* Position it vertically centered */
    transform: translateY(-50%); /* Offset the icon by half of its height to make it exactly centered */
    color: #ccc;
    pointer-events: none; /* Prevent the icon from interfering with clicks */
    z-index: 3;
}

ul {
    list-style-type: none;
    padding: 0;
    margin-top: 20px;
    text-align: left;
}

li {
    padding: 10px;
    border-bottom: 0px solid #ccc; /* Optional: separator line between results */
    display: flex;
    align-items: flex-start;
}

li img {
    width: 90px;
    height: 80px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 5px;
    object-fit: cover;
}

.result-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    font-size: 1em;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.result-title {
    font-weight: bold;
    color: rgb(38, 109, 150);
    text-decoration: none;
    margin: 10px 0;
    line-height: 1.2em;
    font-size: 1em;

}

.result-description {
    color: rgb(29, 46, 68);
    margin: 5px 0;
    font-size: 1em;
    line-height: 1.4em;
}

.no-results {
    color: rgb(29, 31, 34);
    margin-top: 20px;
    font-size: 14px;
}


@media (max-width: 500px) {
    .container {
        width: 90%;
        padding: 15px;
        top: 30%; /* Adjusting for better positioning on smaller screens */
    }
    .logo {
        font-size: 2em;
        margin-top: 10px;
      }
    input[type="text"] {
        padding: 10px 10px 10px 35px;
        font-size: 12px;
    }
    .search-box i {
        left: 7px;
    }
    .result-title {
        font-size: 1.5em;
    }
    .result-description {
        font-size: 1.5em;
    }
    .no-results {
        font-size: 12px;
    }
}

.pagination-button {
    padding: 10px 20px;
    margin: 5px;
    border: none;
    background-color: #ffffff;
    color: rgb(25, 109, 124);
    font-size: 20px;
    cursor: pointer;
    border-radius: 5px;
}

.pagination-button:disabled {
    background-color: #ffffff;
    cursor: not-allowed;
}

.pagination-button:hover:not(:disabled) {
    background-color: #ffffff;
}
