/*
Theme Name: Demo Theme 1
Theme URI: https://example.com
Description: Schema-driven WordPress theme powered by TFS Theme Manager. Minimal theme that uses helper functions to display content based on schema definitions.
Author: TFS Systems
Author URI: https://aptecsol.com
Version: 1.0.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: demo-theme-1
Tags: custom-header, custom-menu, featured-images, flexible-header, full-width-template

This theme requires TFS Theme Manager plugin to be installed and activated.
*/

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Container */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Debug Styles */
.debug-section {
    border: 2px dashed #ccc;
    padding: 20px;
    margin: 20px 0;
    background: #f9f9f9;
}

.debug-section h3 {
    color: #666;
    margin-bottom: 10px;
}

.debug-section pre {
    background: #fff;
    padding: 15px;
    border: 1px solid #ddd;
    overflow-x: auto;
    font-size: 12px;
}