/*
Theme Name: WAGiving - WhatsApp Donation System
Description: A WordPress theme that powers a WhatsApp-based donation system with OpenAI integration, Stripe payments, and comprehensive admin management.
Version: 1.0.0
Author: WAGiving Team
*/

/* Basic WordPress theme styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Admin styles for WAGiving */
.waggiving-admin-page {
    padding: 20px;
}

.waggiving-form-table {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-bottom: 20px;
}

.waggiving-search-box {
    margin-bottom: 20px;
    padding: 10px;
    width: 300px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.gift-aid-yes {
    color: #46b450;
    font-weight: bold;
}

.gift-aid-no {
    color: #dc3232;
    font-weight: bold;
}

.waggiving-test-button {
    background: #0073aa;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.waggiving-test-button:hover {
    background: #005a87;
}

.waggiving-status-success {
    color: #46b450;
}

.waggiving-status-error {
    color: #dc3232;
}

.waggiving-conversation-link {
    color: #0073aa;
    text-decoration: none;
}

.waggiving-conversation-link:hover {
    text-decoration: underline;
} 