.tagifier-modal {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.tagifier-modal-content {
    position: relative;
    background-color: #fff;
    max-width: 90%;
    width: 400px;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.tagifier-modal-close {
    position: absolute;
    top: 12px;
    right: 18px;
    background-color: transparent;
    border: none;
    font-size: 32px;
    font-weight: bold;
    color: #000;
    cursor: pointer;
}

.tagifier-modal-title {
    border-bottom: 2px solid #e9e9e9;
    padding-bottom: 1rem;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}


.tagifier-modal-post-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.tagifier-modal-post-list li {
    margin-bottom: 10px;
}

.tagifier-modal-post-list li:last-child {
    margin-bottom: 0;
}

.tagifier-modal-post-list a {
    text-decoration: none;
}

.tagifier-modal-post-list a:hover {
    text-decoration: underline;
}

.tagifier-modal-see-all {
    display: inline-block;
    margin-top: 15px;
    text-decoration: none;
    font-weight: bold;
}

.tagifier-modal-see-all:hover {
    text-decoration: underline;
}
