/**
 * PhonePe CliManage - Public Styles
 * 
 * @package PhonePeCliManage
 * @since 1.0.0
 */

.phonepe-payment-section {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #5F259F;
}

.phonepe-pay-button {
    display: inline-block;
    padding: 15px 40px;
    background: #5F259F;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.phonepe-pay-button:hover {
    background: #4a1d7a;
    color: #fff;
}

.phonepe-payment-section h3 {
    margin-bottom: 20px;
    color: #2c3e50;
    font-size: 24px;
}

.phonepe-payment-section p {
    margin-bottom: 20px;
    color: #666;
    font-size: 16px;
}

.phonepe-payment-error {
    margin: 40px 0;
    padding: 30px;
    background: #f8d7da;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #dc3545;
}

.phonepe-payment-error h3 {
    margin-bottom: 15px;
    color: #721c24;
}

.phonepe-payment-error p {
    color: #721c24;
    margin-bottom: 10px;
}

.phonepe-checkout-wrapper {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
}

.phonepe-invoice-details {
    margin-bottom: 20px;
}

.phonepe-invoice-table {
    width: 100%;
    border-collapse: collapse;
}

.phonepe-invoice-table td {
    padding: 8px;
    border-bottom: 1px solid #eee;
}

.phonepe-success {
    padding: 15px;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    border-radius: 4px;
    color: #155724;
}

.phonepe-error {
    padding: 15px;
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    border-radius: 4px;
    color: #721c24;
}

