/*
Theme Name: MindToPost
Theme URI: https://mindtopost.local
Author: MindToPost
Author URI: https://mindtopost.local
Description: A high-performance AI-powered content generation platform.
Version: 2.0.0
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mindtopost
*/

/* Base styles complementing Tailwind */
body.mindtopost-theme {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #ffffff;
    color: #111111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.mindtopost-theme .btn-primary {
    background-color: #0073aa;
    color: #ffffff;
    transition: all 0.2s ease;
}

.mindtopost-theme .btn-primary:hover {
    background-color: #005f8d;
}

.mindtopost-theme .card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.mindtopost-theme .chat-bubble-user {
    background-color: #0073aa;
    color: #ffffff;
}

.mindtopost-theme .chat-bubble-ai {
    background-color: #f3f4f6;
    color: #111111;
}

/* Mobile touch targets */
.mindtopost-theme button,
.mindtopost-theme a,
.mindtopost-theme input[type="submit"] {
    min-height: 44px;
}

/* Admin settings page styles */
.mindtopost-admin-wrap {
    max-width: 800px;
}

.mindtopost-admin-wrap .form-table th {
    width: 220px;
}