.peptipaycryptogateway-payment-method-wrapper {
    display: flex;
    align-items: center;
}

.peptipaycryptogateway-payment-method-wrapper img {
    display: flex;
    width: 100%;
}



/* Payment Method Description Display */
.peptipay-payment-description {
    margin: 15px 0 !important;
    padding: 12px !important;
    background: #f0f6fc !important;
    border: 1px solid #b3d9ff !important;
    border-radius: 6px !important;
    color: #0073aa !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    box-shadow: 0 2px 4px rgba(0, 115, 170, 0.1) !important;
}

/* Blocks Checkout Specific Styling */
.wc-block-components-checkout-payment-method-options .peptipay-payment-description {
    margin: 20px 0 !important;
    padding: 16px !important;
    background: #f8f9fa !important;
    border: 1px solid #dee2e6 !important;
    border-radius: 8px !important;
    color: #495057 !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1) !important;
}

/* Ensure description is visible in blocks checkout */
#peptipay-description-container {
    position: relative;
    z-index: 1;
}

/* Crypto Payment Confirmation Popup Styles */
.peptipay-crypto-confirmation-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    visibility: hidden;
}

.peptipay-crypto-confirmation-popup.visible {
    opacity: 1;
    visibility: visible;
}

.peptipay-crypto-confirmation-popup .popup-content {
    background: white;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.peptipay-crypto-confirmation-popup .popup-header {
    margin-bottom: 25px;
}

.peptipay-crypto-confirmation-popup .provider-logo {
    margin-bottom: 15px;
    text-align: center;
}

.peptipay-crypto-confirmation-popup .provider-logo img {
    background: gray;
}

.peptipay-crypto-confirmation-popup .provider-logo-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.peptipay-crypto-confirmation-popup .provider-logo-emoji {
    font-size: 48px;
}

.peptipay-crypto-confirmation-popup .popup-title {
    margin: 0;
    color: #333;
    font-size: 24px;
    font-weight: 600;
}

.peptipay-crypto-confirmation-popup .popup-subtitle {
    margin: 10px 0 0 0;
    color: #666;
    font-size: 16px;
}

.peptipay-crypto-confirmation-popup .popup-message {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #0073aa;
    text-align: left;
    line-height: 1.6;
    color: #333;
    white-space: pre-line;
}

.peptipay-crypto-confirmation-popup .popup-message p {    
    margin: 0;
}

.peptipay-crypto-confirmation-popup .popup-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.peptipay-crypto-confirmation-popup .btn-cancel {
    padding: 12px 24px;
    border: 2px solid #dc3545;
    background: white;
    color: #dc3545;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.peptipay-crypto-confirmation-popup .btn-cancel:hover {
    background: #dc3545;
    color: white;
}

.peptipay-crypto-confirmation-popup .btn-confirm {
    padding: 12px 24px;
    border: 2px solid #0073aa;
    background: #0073aa;
    color: white;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.peptipay-crypto-confirmation-popup .btn-confirm:hover {
    background: #0056b3;
    border-color: #0056b3;
}

.peptipay-crypto-confirmation-popup .popup-footer {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 12px;
    color: #999;
}

.peptipay-crypto-confirmation-popup .popup-footer p {
    margin: 0;
}

