.tags-input-wrapper {
    background: white;
    padding: 10px;
    border-radius: 4px;
    max-width: 100%;
    border: 1px solid #ced4da;
    min-height: 45px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
}
.tag-input {
    border: none;
    background: transparent;
    outline: none;
    width: auto;
    min-width: 150px;
    flex-grow: 1;
    padding: 0.2rem 0.1rem;
}
.tag {
    display: inline-flex;
    align-items: center;
    margin-right: 5px;
    margin-bottom: 5px;
    padding: 5px 10px;
    background: var(--vz-warning);
    color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1;
}
.tag a {
    margin: 0 0 0 7px;
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    color: white;
    font-weight: bold;
    text-decoration: none;
    line-height: 1;
}
.keyword-item {
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.2s;
    margin-bottom: 4px;
}
.keyword-item:hover {
    background-color: #eceef4;
    color: var(--vz-primary);
}
#keywords-list {
    border: 1px solid #ced4da;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.suggestions-container {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ced4da;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}
.suggestion-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background-color 0.2s;
}
.suggestion-item:hover,
.suggestion-item.active {
    background-color: #eceef4;
    color: var(--vz-primary);
}
.suggestion-item .highlight {
    background-color: gold;
    font-weight: bold;
}

.highlight {
    color: black;
    background-color: gold;
    font-weight: bold;
}
.btn-outline-custom {
    color: var(--vz-primary);
    border-color: var(--vz-primary);
}
.btn-outline-custom:hover {
    color: #fff;
    background-color: var(--vz-primary);
    border-color: var(--vz-primary);
}