.search-container {
    position: relative;
    margin: 20px auto;
    max-width: 800px;
}

.search-box {
    font-size: 1.25rem;
    padding: 0.75rem 1rem;
    width: 100%;
    border-radius: 5px 0 0 5px;
}

.search-button {
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
    background-color: #007bff;
    color: #fff;
    border-radius: 0 5px 5px 0;
}

.search-button i {
    margin-right: 0.5rem;
}

.placeholder-animate {
    position: absolute;
    pointer-events: none;
    opacity: 0.5;
}

.autocomplete-box {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0 0 5px 5px;
    z-index: 1000;
}

.autocomplete-item {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #eee;
}

.autocomplete-item a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.autocomplete-item .title {
    color: #007bff;
    font-weight: bold;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.autocomplete-item .subtext {
    font-size: 0.875rem;
    color: #989b9d;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.view-all {
    text-align: center;
    padding: 0.75rem;
    font-weight: bold;
    background-color: #f8f9fa;
    border-top: 1px solid #ccc;
}

.view-all a {
    color: #007bff;
    text-decoration: none;
}