.peb-wrap {
    display: flex;
    justify-content: flex-end;
    margin: 10px 0 18px;
}

.peb-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 20px;
    background: var(--peb-color, #1a73e8);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,.18);
    transition: filter .2s, transform .15s, box-shadow .2s;
    line-height: 1;
}

.peb-btn svg { width:17px; height:17px; flex-shrink:0; }

.peb-btn:hover {
    filter: brightness(1.12);
    transform: translateY(-2px);
    box-shadow: 0 5px 14px rgba(0,0,0,.22);
}

.peb-btn:active { transform: translateY(0); }

.peb-btn:disabled {
    opacity: .7;
    cursor: not-allowed;
    transform: none;
}

.peb-btn.peb-loading svg {
    animation: peb-spin .8s linear infinite;
}

@keyframes peb-spin { to { transform: rotate(360deg); } }

@media print { .peb-wrap { display:none !important; } }
