/* Notification Bar Styles */
.jo-smart-search.notification-bar .jo-search-form {
    position: fixed;
    top: -60px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #0053CC;
    border-bottom: 1px solid #ddd;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: top 0.8s ease;
}

.jo-smart-search.notification-bar .jo-search-form.active {
    top: 0; /* Slide down into view */
}

.jo-smart-search.notification-bar .jo-search-input-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background: transparent;
    border: none;
}

.jo-smart-search.notification-bar .js-finder-search-query {
    font-size: 16px;
    outline: none;
    background: transparent none repeat scroll 0% 0%;
    border: 1px solid #fff;
    border-style: none none solid;
    border-radius: 0px;
    max-width: 100%;
    padding: 5px 0px;
    color: #ffffff;
}
.jo-smart-search.notification-bar .js-finder-search-query::placeholder {
    color: #ffffff;
}

.jo-smart-search.notification-bar .jo-search-submit {
    display: none; /* Hide the submit button since it's not needed here */
}

/* Close Button */
.jo-smart-search.notification-bar .jo-search-close {
    position: absolute;
    top: 50%;
    right: 15px; /* Positioned far right */
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease;
    background: transparent;
    border: none;
    padding: 5px;
    border-radius: 50%; /* Circular shape */
}

.jo-smart-search.notification-bar .jo-search-close:hover {
    color: #ff4d4d; /* Red color on hover for better visibility */
}