/*
Theme Name: TPT Contact Manager Theme
Description: Custom theme for TPT Contact Manager SaaS plugin. Provides a clean, professional interface optimized for contact management and multi-tenant functionality.
Author: TPT Solutions
Version: 1.0.0
Text Domain: tpt-contact-theme
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: custom-theme, saas, contact-manager, responsive, professional
*/

/* Frontend styles are enqueued via functions.php */

/* Theme-specific styles */
:root {
    --tpt-primary-color: #007cba;
    --tpt-primary-hover: #005a94;
    --tpt-secondary-color: #f6f7f8;
    --tpt-text-dark: #1e1e1e;
    --tpt-text-medium: #555555;
    --tpt-text-light: #888888;
    --tpt-bg-white: #ffffff;
    --tpt-border-color: #e1e5e9;
    --tpt-success: #28a745;
    --tpt-error: #dc3545;
    --tpt-warning: #ffc107;
    --tpt-shadow: 0 2px 4px rgba(0,0,0,0.1);
    --tpt-border-radius: 4px;
    --tpt-transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    margin: 0;
    padding: 0;
    background: var(--tpt-secondary-color);
    color: var(--tpt-text-dark);
    line-height: 1.6;
}

/* Ensure no conflicts with WordPress admin bar */
body.admin-bar {
    padding-top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 46px;
    }
}

/* Responsive utilities */
.tpt-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tpt-hidden-mobile {
    display: block;
}

.tpt-hidden-desktop {
    display: none;
}

@media (max-width: 768px) {
    .tpt-hidden-mobile {
        display: none;
    }

    .tpt-hidden-desktop {
        display: block;
    }
}
