/**
 * Cashfree CliManage - Public Styles
 */

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

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

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

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

.cashfree-pay-button {
    display: inline-block;
    padding: 12px 30px;
    background: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    text-align: center;
    transition: background 0.3s;
}

.cashfree-pay-button:hover {
    background: #005a87;
    color: #fff;
}

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

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

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

