.react-autosuggest__container {
    position: relative;
    width: 100%;
}

.react-autosuggest__input {
    width: 100%;
    height: 50px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.react-autosuggest__suggestions-container {
    position: absolute;
    width: 100%;
    max-height: 250px;
    overflow-y: auto;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    display: none;
    z-index: 1000;
}

.react-autosuggest__suggestion {
    padding: 12px;
    cursor: pointer;
    font-size: 14px;
    transition: background 0.3s ease;
}

.react-autosuggest__suggestion:hover {
    background: #f8f9fa;
}

.blog_details_content h2, .blog_details_content h4 {
    color: #333;
}

.blog_details_content p {
    line-height: 1.8;
    color: #555;
}

.blog_meta {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px;
    font-size: 14px;
    color: #777;
}

.blog_meta li i {
    margin-right: 5px;
}

.blog_sidebar ul li {
    margin-bottom: 10px;
}

.social_share a {
    margin-left: 10px;
    color: #ff7b54;
    font-size: 18px;
}