/*
Theme Name: Minimalist WP Theme
Theme URI: https://yourwebsite.com/
Author: Your Name
Author URI: https://yourwebsite.com/
Description: A minimalist, SEO-optimized, Gutenberg-ready WordPress theme with a dark mode toggle.
Version: 1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: minimalist-theme
*/

body {
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    transition: background 0.3s, color 0.3s;
}

.dark-mode {
    background-color: #111;
    color: #fff;
}

/* Simple dark mode toggle button */
.dark-mode-toggle {
    position: fixed;
    top: 10px;
    right: 10px;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    font-size: 20px;
}
