#searchBarContainer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.content-area {
    transition: padding-top 0.3s ease;
}

.search-bar {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #f1f1f1;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
    margin: 0 10px;
    background-color: #ffffff;
    border-radius: 20px;
}

#searchInput {
    width: 100%;
    border: none;
    background-color: transparent;
    border-radius: 20px;
    padding: 8px 30px 8px 12px;
    font-size: 16px;
    -webkit-appearance: none;
    appearance: none;
}



#searchInput::placeholder {
    color: #999;
}

.clear-btn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    color: #999;
    display: none;
}

.back-btn {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
}

#noResultsMessage {
    text-align: center;
    padding: 10px;
    color: #666;
    display: none;
}

.search-instruction {
    text-align: center;
    padding: 5px;
    color: #666;
    font-size: 14px;
    background-color: #f1f1f1;
}

/* Previne o zoom em dispositivos iOS */
    @supports (-webkit-touch-callout: none) {
        #searchInput {
            font-size: 16px;
        }
    }



@media (max-width: 768px) {
    .search-bar {
        padding: 8px 10px;
    }
    #searchInput {
        font-size: 14px;
    }
}