.tpp-tags {
    display: flex;
    gap: 10px;
}

.tpp-tag {
    border: 1px solid #ccc;
    padding: 5px 10px;
    cursor: pointer;
    border-radius: 5px;
}

.tpp-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border: 1px solid #ccc;
    padding: 20px;
    display: none;
    z-index: 1000;
    border-radius: 10px;
}

.tpp-popup .tpp-close {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 16px;
}
