/* Social Strategy Tool Styles */
        .social-strategy-container {
            display: flex;
            min-height: calc(100vh - 200px);
            margin-top: 20px;
        }
        
        /* Sidebar Styles */
        .sm-sidebar {
            width: 300px;
            background: linear-gradient(135deg, var(--primary-color, #4a90e2) 0%, var(--secondary-color, #357abd) 100%);
            padding: 30px 20px;
            position: sticky;
            top: 100px;
            height: fit-content;
            border-radius: 15px;
            margin-right: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        @media (max-width: 1024px) {
            .sm-sidebar {
                padding-top: 120px;
            }
            .sm-brand {
                margin-top: 2px;
            }
        }
        
        .sm-brand {
            text-align: center;
            margin-bottom: 30px;
            color: white;
        }
        
        .sm-brand i {
            font-size: 2.5rem;
            margin-bottom: 10px;
            display: block;
        }
        
        .sm-brand h3 {
            margin: 10px 0 5px 0;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .sm-brand p {
            margin: 0;
            opacity: 0.9;
            font-size: 0.9rem;
        }
        
        .sm-controls {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .sm-form-group {
            display: flex;
            flex-direction: column;
        }
        
        .sm-form-group label {
            color: white;
            font-weight: 500;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        
        .sm-input, .sm-select, .sm-textarea {
            padding: 12px;
            border: none;
            border-radius: 8px;
            font-size: 0.95rem;
            background: rgba(255,255,255,0.95);
            transition: all 0.3s ease;
        }
        
        .sm-input:focus, .sm-select:focus, .sm-textarea:focus {
            outline: none;
            background: white;
            box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
        }
        
        .sm-textarea {
            resize: vertical;
            font-family: 'Open Sans', inherit;
            line-height: 1.5;
        }
        
        .sm-btn {
            padding: 12px 20px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.95rem;
        }
        
        .sm-btn-primary {
            background: white;
            color: var(--primary-color, #4a90e2);
        }
        
        .sm-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }
        
        .sm-btn-secondary {
            background: #6c757d;
            color: white;
        }
        
        .sm-btn-danger {
            background: #dc3545;
            color: white;
        }
        
        .sm-divider {
            height: 1px;
            background: rgba(255,255,255,0.3);
            margin: 10px 0;
        }
        
        /* Main Content Styles */
        .sm-main-content {
            flex: 1;
            padding: 20px 0;
        }
        
        .sm-header {
            text-align: center;
            padding-top: 60px;
            margin-bottom: 30px;
        }
        
        .sm-header h1 {
            margin: 0 0 10px 0;
            color: var(--text-color, #333);
            font-size: 2.5rem;
            font-weight: 700;
        }
        
        .sm-week-range {
            color: var(--text-secondary, #666);
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Statistics */
        .sm-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 40px;
            justify-content: center;
        }
        
        .sm-stat-card {
            background: white;
            padding: 20px 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            min-width: 120px;
        }
        
        .sm-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color, #4a90e2);
            margin-bottom: 5px;
        }
        
        .sm-stat-label {
            color: var(--text-secondary, #666);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Content Grid */
        .sm-content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 25px;
        }
        
        .sm-post-card {
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        .sm-post-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.12);
        }
        
        .sm-post-header {
            padding: 15px 20px;
            background: var(--light-gray, #f8f9fa);
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sm-platform-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
        }
        
        .sm-platform-linkedin {
            background: #0077b5;
            color: white;
        }
        
        .sm-platform-fbig {
            background: linear-gradient(45deg, #1877f2, #e4405f);
            color: white;
        }
        
        .sm-post-date {
            color: var(--text-secondary, #666);
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .sm-post-body {
            padding: 20px;
        }
        
        .sm-pillar-label {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 15px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .sm-pillar-online-presence { background: #e3f2fd; color: #1976d2; }
        .sm-pillar-workflow-automation { background: #f3e5f5; color: #7b1fa2; }
        .sm-pillar-social-media { background: #e8f5e8; color: #388e3c; }
        .sm-pillar-ai-growth { background: #fff3e0; color: #f57c00; }
        .sm-pillar-success-stories { background: #fce4ec; color: #c2185b; }
        
        .sm-script-box, .sm-caption-box {
            background: var(--light-gray, #f8f9fa);
            padding: 15px;
            border-radius: 8px;
            margin-bottom: 15px;
            border-left: 4px solid var(--primary-color, #4a90e2);
        }
        
        .sm-script-box h4, .sm-caption-box h4 {
            margin: 0 0 8px 0;
            color: var(--text-color, #333);
            font-size: 0.9rem;
            font-weight: 600;
        }
        
        .sm-script-content, .sm-caption-content {
            color: var(--text-secondary, #666);
            line-height: 1.5;
            font-size: 0.9rem;
            max-height: 120px;
            overflow-y: auto;
        }
        
        .sm-caption-content {
            max-height: 100px;
        }
        
        .sm-post-footer {
            padding: 15px 20px;
            background: var(--light-gray, #f8f9fa);
            border-top: 1px solid #e9ecef;
            display: flex;
            gap: 10px;
        }
        
        .sm-btn-sm {
            padding: 8px 16px;
            font-size: 0.85rem;
        }
        
        /* Empty State */
        .sm-empty-state {
            grid-column: 1 / -1;
            text-align: center;
            padding: 60px 20px;
            color: var(--text-secondary, #666);
        }
        
        .sm-empty-state i {
            font-size: 4rem;
            margin-bottom: 20px;
            opacity: 0.3;
        }
        
        .sm-empty-state h3 {
            margin: 0 0 10px 0;
            color: var(--text-color, #333);
        }
        
        /* Modal */
        .sm-modal {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 1000;
            display: none;
            align-items: center;
            justify-content: center;
        }
        
        .sm-modal.active {
            display: flex;
        }
        
        .sm-modal-backdrop {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }
        
        .sm-modal-content {
            position: relative;
            background: white;
            border-radius: 15px;
            width: 90%;
            max-width: 600px;
            max-height: 80vh;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            animation: modalSlideIn 0.3s ease;
        }
        
        @keyframes modalSlideIn {
            from {
                transform: translateY(-50px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }
        
        .sm-modal-header {
            padding: 20px 25px;
            border-bottom: 1px solid #e9ecef;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .sm-modal-header h3 {
            margin: 0;
            color: var(--text-color, #333);
        }
        
        .sm-modal-close {
            background: none;
            border: none;
            font-size: 1.2rem;
            color: var(--text-secondary, #666);
            cursor: pointer;
            padding: 5px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }
        
        .sm-modal-close:hover {
            background: var(--light-gray, #f8f9fa);
            color: var(--text-color, #333);
        }
        
        .sm-modal-body {
            padding: 25px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .sm-modal-footer {
            padding: 20px 25px;
            border-top: 1px solid #e9ecef;
            display: flex;
            gap: 10px;
            justify-content: flex-end;
        }
        
        /* Toast */
        .sm-toast {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #28a745;
            color: white;
            padding: 15px 20px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 1001;
        }
        
        .sm-toast.show {
            transform: translateY(0);
            opacity: 1;
        }
        
        .sm-toast-content {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        /* Responsive Design */
        @media (max-width: 900px) {
            .social-strategy-container {
                flex-direction: column;
            }
            
            .sm-sidebar {
                width: 100%;
                position: relative;
                top: 0;
                margin-right: 0;
                margin-bottom: 20px;
            }
            
            .sm-stats {
                flex-direction: column;
                align-items: center;
            }
            
            .sm-stat-card {
                width: 200px;
            }
            
            .sm-content-grid {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 480px) {
            .sm-header h1 {
                font-size: 1.8rem;
            }
            
            .sm-sidebar {
                padding: 20px 15px;
            }
            
            .sm-content-grid {
                gap: 20px;
            }
        }