/*
Theme Name: Blank Canvas
Theme URI: https://example.com
Author: Your Name
Author URI: https://example.com
Description: A minimal WordPress theme with no forced styles - perfect for building with shortcodes and custom code.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: blank-canvas
*/

/* Minimal reset to remove default WordPress styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
    line-height: 1.6;
}

/* Remove default list styles */
ul, ol {
    list-style: none;
}

/* Remove default link styles (optional - uncomment if needed) */
/*
a {
    text-decoration: none;
    color: inherit;
}
*/

/* Basic image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Add your custom styles below this line */
