/* .nostr-zap-button-container {
    display: flex;
    justify-content: center;
} */
/* nostr-zap-button {
    visibility: hidden;
}

nostr-zap-button[connection-status="ready"] {
    visibility: visible;
} */

nostr-zap-button.is-clickable {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}

nostr-zap-button.is-disabled {
    display: flex !important;
    justify-content: center !important;
    width: 100%;
}





.section-loader {
    display: none;
    /* hidden by default */
    width: 100%;
    padding: 30px 0;
    text-align: center;
    /* center horizontally */
}

/* Your loader stays unchanged */
.loader {
    width: 50px;
    aspect-ratio: 1;
    --_c: no-repeat radial-gradient(farthest-side, #ef9f0d 92%, #0000);
    background:
        var(--_c) top,
        var(--_c) left,
        var(--_c) right,
        var(--_c) bottom;
    background-size: 12px 12px;
    animation: l7 1s infinite linear;
    margin: 0 auto;
}

@keyframes l7 {
    to {
        transform: rotate(.5turn);
    }
}