.inno-quicksearch-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 2rem;
}

.inno-quicksearch-container {
    position: relative;
    width: 100%;
    max-width: 600px;
}

.inno-quicksearch-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 24px;
    outline: none;
    transition: border-color 0.2s;
}

.inno-quicksearch-input:focus {
    border-color: #007cba;
    box-shadow: 0 0 0 1px #007cba;
}

.inno-quicksearch-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    margin-top: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.qs-item {
    padding: 10px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.qs-item:last-child {
    border-bottom: none;
}

.qs-item:hover, .qs-item.selected {
    background-color: #f7f7f7;
}

.qs-title {
    font-weight: 500;
    color: #333;
}

.qs-meta {
    font-size: 0.85em;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.qs-all {
    color: #007cba;
}
