/*
Theme Name: Guru Referral Theme
Theme URI: https://branding-guru.com
Author: Branding Guru
Author URI: https://branding-guru.com
Description: A custom WordPress theme designed to work seamlessly with the Guru Referral Manager plugin and Elementor.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom, elementor, referral
Text Domain: guru-referral-theme
*/

/**
 * Add Custom CSS for Theme
 */
function guru_theme_custom_css() {
    ?>
    <style>
        .guru-package-widget {
            border: 1px solid #ccc;
            padding: 20px;
            border-radius: 5px;
            background: #f9f9f9;
            text-align: center;
        }
        .guru-package-widget h3 {
            margin-bottom: 10px;
        }
        .guru-package-widget strong {
            color: #0073aa;
        }
    </style>
    <?php
}
add_action('wp_head', 'guru_theme_custom_css');
