.pk-avl-replacement {
    margin: 16px 0;
}

.pk-avl-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 22px;
    border-radius: 6px;
    border: 0;
    background: #477285;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
}

.pk-avl-button:hover {
    background: #3d6373;
    color: #fff;
    text-decoration: none;
}

.pk-avl-button:active {
    transform: translateY(1px);
}

.pk-avl-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.pk-avl-modal.is-active {
    display: flex;
}

.pk-avl-modal-box {
    position: relative;
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 10px;
    padding: 30px 26px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.pk-avl-modal-box h3 {
    margin: 0 0 14px;
    font-size: 24px;
    font-weight: 700;
}

.pk-avl-modal-box p {
    margin: 0;
    font-size: 17px;
    line-height: 1.5;
}

.pk-avl-close {
    position: absolute;
    top: 8px;
    right: 13px;
    border: 0;
    background: transparent;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    color: #222;
}

.pk-avl-hidden {
    display: none !important;
}