.my-blog-search {
    position: relative;
    width: 800px;
    max-width: 170%;
    margin: 20px 0;
}

.my-blog-search-form {
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

#my-blog-search-input {
    width: 100%;
    height: 60px;
    padding: 0 20px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    box-sizing: border-box;
    outline: none;
}

.my-blog-search-form button {
    height: 60px;
    padding: 0 30px;
    font-size: 18px;
    border: 1px solid #01CD00;
    background-color: #01CD00;
    color: #fff;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    box-sizing: border-box;
    transition: 0.3s;
}

.my-blog-search-form button:hover {
    background-color: #01b500;
}

#my-blog-search-results {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#my-blog-search-results ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

#my-blog-search-results li {
    padding: 12px 15px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

#my-blog-search-results li a {
    text-decoration: none;
    color: #333;
    display: block;
}

#my-blog-search-results li:hover {
    background: #f9f9f9;
}

/* Responsive */
@media (max-width: 1024px) {
    .my-blog-search {
        width: 100%;
    }
    #my-blog-search-input {
        height: 50px;
        font-size: 14px;
    }
    .my-blog-search-form button {
        height: 50px;
        padding: 0 20px;
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .my-blog-search {
        width: 100%;
    }
}
