body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;

    height: 100vh;
}
.search-container {
    display: flex;
    justify-content: start;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 20px;
}
.search-box {
    width: 35%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 20px;
    box-shadow: rgb(0, 0, 0, 0.5) 0px 2px 4px 0px;
}
.search-button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 20px;
    background-color: #34ac6a;
    color: white;
    cursor: pointer;
    margin-left: 1%;
    
}
.search-button:hover {
    background-color: #00b3a4;
}
.title {
    position:sticky;
    padding-right: 3%;
}
.results-container {
    margin-top: 20px;
    text-align: left;
    width: 60%;
    padding-left: 30px;
}
.result-item {
    padding: 10px;
    border: none;
    text-align: justify;
}
.result-item a {
    text-decoration: none;
    color: #007bff;
}
.result-item a:hover {
    text-decoration: underline;
}
.icon{
    width: 70px;
    height: 70px;
    margin-right: 20px;
}
.site-host {
    color: rgb(112, 191, 112);
    font-size: 13px;
}

@media (max-width: 600px) {
    .search-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items */
    }
    .search-box {
        width: 80%; /* Adjust width for mobile */
        margin-bottom: 10px; /* Add space below the search box */
    }
    .search-button {
        width: 50%; /* Adjust width for mobile */
    }
}