/* Shortcode Styles */
.pdp-payment-details {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-family: Arial, sans-serif;
}

.pdp-section-title {
    color: #0056d2;
    font-size: 18px;
    font-weight: bold;
    margin: 20px 0 10px;
}

.pdp-qr-code {
    display: block;
    margin: 0 auto 10px;
    max-width: 200px;
}

.pdp-qr-text {
    text-align: center;
    font-size: 14px;
    color: #333;
    margin-bottom: 15px;
}

.pdp-or-text {
    font-size: 14px;
    color: #333;
    margin: 10px 0;
}

.pdp-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    background: #f9f9f9;
}

.pdp-value {
    font-size: 14px;
    color: #333;
}

.pdp-copy-btn {
    background: #28a745;
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
}

.pdp-copy-btn:hover {
    background: #218838;
}

/* Admin Message Styles */
#pdp-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    border-radius: 5px;
}

#pdp-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
}