/* Hide Pay/Cancel buttons on order received and order pay pages */
.woocommerce-order-pay .woocommerce-order-actions,
.woocommerce-order-received .woocommerce-order-actions {
    display: none !important;
}

/* Bitcoin Payment Instructions Styles */
.wc-bitcoin-payment-instructions {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.bitcoin-payment-box {
    display: flex;
    gap: 30px;
    margin: 20px 0;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.bitcoin-qr-code {
    flex-shrink: 0;
}

.bitcoin-qr-code img {
    border: 2px solid #f7931a;
    border-radius: 8px;
    padding: 10px;
    background: white;
}

.bitcoin-payment-details {
    flex-grow: 1;
}

.payment-detail {
    margin-bottom: 20px;
}

.payment-detail strong {
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.bitcoin-amount,
.bitcoin-address {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: #f5f5f5;
    border-radius: 4px;
}

.amount-value {
    font-size: 24px;
    font-weight: bold;
    color: #f7931a;
}

.address-value {
    font-family: monospace;
    font-size: 14px;
    word-break: break-all;
    flex-grow: 1;
}

.copy-button {
    padding: 8px 16px;
    background: #f7931a;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    white-space: nowrap;
}

.copy-button:hover {
    background: #e08316;
}

.bitcoin-instructions ol,
.btcx-instructions ol {
    padding-left: 20px;
}

.bitcoin-instructions li,
.btcx-instructions li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.btcx-instructions {
    margin-top: 30px;
    padding: 20px;
    background: #e8f5e9;
    border-left: 4px solid #4caf50;
    border-radius: 4px;
}

.btcx-note {
    margin-top: 15px;
    font-size: 14px;
    color: #666;
}

.bitcoin-important-notes {
    margin-top: 30px;
    padding: 15px;
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    border-radius: 4px;
}

.bitcoin-important-notes ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.bitcoin-important-notes li {
    margin-bottom: 8px;
}

.bitcoin-custom-instructions {
    margin: 20px 0;
    padding: 15px;
    background: #e3f2fd;
    border-left: 4px solid #2196f3;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .bitcoin-payment-box {
        flex-direction: column;
        align-items: center;
    }
}
