/*
Theme Name: FTPist Theme
Theme URI: http://example.com/ftpist-theme/
Author: Manus AI
Author URI: http://manus.im/
Description: A custom WordPress theme based on the FTPist design screenshot.
Version: 1.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ftpist-theme
*/

/* 
 * TAILWIND CSS NOTE:
 * This theme uses Tailwind CSS via CDN for development speed and exact design replication.
 * Most styling is handled via utility classes in the HTML templates.
 * This file reserves standard WordPress requirements and specific overrides.
 */

/* --- General WordPress Classes --- */
.aligncenter {
    display: block;
    margin: 0 auto;
}

.alignleft {
    float: left;
    margin-right: 1.5em;
}

.alignright {
    float: right;
    margin-left: 1.5em;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.8em;
    padding: 0.5em 0;
}

/* Ensure admin bar doesn't break fixed header (handled in header.php styles but good to have fallback) */
body.admin-bar nav.fixed {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar nav.fixed {
        top: 46px; 
    }
}
