/*
Theme Name: WordSmash
Theme URI: https://wordsmash.io
Author: Your Name
Author URI: https://yoursite.com
Description: A powerful WordPress theme with advanced container layouts, database management, and seamless plugin integration. Optimized for Elementor with circular containers and dynamic content capabilities.
Version: 1.0.0
Requires at least: 6.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: wordsmash
Tags: elementor, custom-layout, database, dynamic-content, circular-containers
*/

/* Basic Theme Styles */
body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.wordsmash-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Circular Container Base Styles */
.wordsmash-circular-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.wordsmash-circular-container::before {
    content: '';
    display: block;
    padding-top: 100%; /* 1:1 Aspect Ratio */
}

/* Admin Styles */
.wordsmash-admin-notice {
    padding: 12px 20px;
    margin: 20px 0;
    border-left: 4px solid #2271b1;
    background: #fff;
    box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.wordsmash-admin-notice.error {
    border-left-color: #d63638;
}

.wordsmash-admin-notice.success {
    border-left-color: #00a32a;
}