        /* ==================== SCHEMA MARKUP GENERATOR STYLES ==================== */
        /* These styles are scoped to not affect header/footer */
        
        :root {
            --smg-primary: #fe7b1f;
            --smg-secondary: #69b5ff;
            --smg-tertiary: #ffe5d3;
            --smg-dark: #1a1a2e;
            --smg-light: #f8f9fa;
            --smg-gradient: linear-gradient(135deg, #fe7b1f 0%, #ff9a56 100%);
            --smg-gradient-blue: linear-gradient(135deg, #69b5ff 0%, #4a9ee8 100%);
            --smg-shadow: 0 10px 40px rgba(254, 123, 31, 0.15);
            --smg-shadow-blue: 0 10px 40px rgba(105, 181, 255, 0.15);
        }
        
        .smg-wrapper {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(180deg, #fff 0%, #ffe5d3 20%, #fff 40%, #e8f4ff 60%, #fff 80%);
            min-height: 100vh;
        }
        
        .smg-wrapper * {
            box-sizing: border-box;
        }
        
        /* Hero Section */
        .smg-hero {
            background: linear-gradient(135deg, #fe7b1f 0%, #ff9a56 50%, #69b5ff 100%);
            padding: 60px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .smg-hero::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
            animation: smg-rotate 30s linear infinite;
        }
        
        @keyframes smg-rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        .smg-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .smg-hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
            margin-bottom: 15px;
        }
        
        .smg-hero p {
            font-size: 1.2rem;
            color: rgba(255,255,255,0.95);
            max-width: 700px;
            margin: 0 auto 25px;
        }
        
        .smg-rating-badge {
            display: inline-flex;
            align-items: center;
            background: rgba(255,255,255,0.2);
            backdrop-filter: blur(10px);
            padding: 10px 25px;
            border-radius: 50px;
            color: #fff;
            font-weight: 500;
        }
        
        .smg-rating-badge i {
            color: #ffd700;
            margin-right: 3px;
        }
        
        .smg-rating-badge span {
            margin-left: 10px;
            opacity: 0.9;
        }
        
        /* Main Content Area */
        .smg-main-content {
            padding: 50px 0;
        }
        
        /* Ad Spaces */
        .smg-ad-space {
            background: linear-gradient(135deg, #ffe5d3 0%, #fff 100%);
            border: 2px dashed #fe7b1f;
            border-radius: 12px;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            color: #fe7b1f;
            font-weight: 500;
            position: sticky;
            top: 20px;
        }
        
        .smg-ad-space i {
            font-size: 3rem;
            margin-bottom: 15px;
            opacity: 0.5;
        }
        
        .smg-ad-space p {
            margin: 0;
            font-size: 0.9rem;
        }
        
        /* Tool Card */
        .smg-tool-card {
            background: #fff;
            border-radius: 20px;
            box-shadow: var(--smg-shadow);
            overflow: hidden;
            border: 1px solid rgba(254, 123, 31, 0.1);
        }
        
        .smg-tool-header {
            background: var(--smg-gradient);
            padding: 25px 30px;
            color: #fff;
        }
        
        .smg-tool-header h2 {
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .smg-tool-header h2 i {
            background: rgba(255,255,255,0.2);
            padding: 12px;
            border-radius: 12px;
        }
        
        .smg-tool-body {
            padding: 30px;
        }
        
        /* Schema Type Selector */
        .smg-schema-types {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
            gap: 12px;
            margin-bottom: 30px;
        }
        
        .smg-schema-type-btn {
            background: #fff;
            border: 2px solid #e0e0e0;
            border-radius: 12px;
            padding: 15px 10px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #333;
        }
        
        .smg-schema-type-btn:hover {
            border-color: var(--smg-primary);
            background: var(--smg-tertiary);
            transform: translateY(-3px);
        }
        
        .smg-schema-type-btn.active {
            background: var(--smg-gradient);
            border-color: var(--smg-primary);
            color: #fff;
            box-shadow: var(--smg-shadow);
        }
        
        .smg-schema-type-btn i {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 8px;
        }
        
        .smg-schema-type-btn span {
            font-size: 0.85rem;
        }
        
        /* Form Styles */
        .smg-form-section {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
        }
        
        .smg-form-section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--smg-primary);
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--smg-tertiary);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .smg-form-group {
            margin-bottom: 20px;
        }
        
        .smg-form-group label {
            display: block;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
            font-size: 0.95rem;
        }
        
        .smg-form-group label .required {
            color: #dc3545;
            margin-left: 3px;
        }
        
        .smg-form-group label .optional {
            color: #6c757d;
            font-weight: 400;
            font-size: 0.85rem;
        }
        
        .smg-form-control {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            font-size: 0.95rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: #fff;
        }
        
        .smg-form-control:focus {
            outline: none;
            border-color: var(--smg-primary);
            box-shadow: 0 0 0 4px rgba(254, 123, 31, 0.1);
        }
        
        .smg-form-control::placeholder {
            color: #adb5bd;
        }
        
        textarea.smg-form-control {
            resize: vertical;
            min-height: 100px;
        }
        
        select.smg-form-control {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23fe7b1f' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }
        
        /* Buttons */
        .smg-btn {
            padding: 14px 30px;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-family: 'Poppins', sans-serif;
        }
        
        .smg-btn-primary {
            background: var(--smg-gradient);
            color: #fff;
            box-shadow: var(--smg-shadow);
        }
        
        .smg-btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(254, 123, 31, 0.3);
        }
        
        .smg-btn-secondary {
            background: var(--smg-gradient-blue);
            color: #fff;
            box-shadow: var(--smg-shadow-blue);
        }
        
        .smg-btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 50px rgba(105, 181, 255, 0.3);
        }
        
        .smg-btn-outline {
            background: transparent;
            border: 2px solid var(--smg-primary);
            color: var(--smg-primary);
        }
        
        .smg-btn-outline:hover {
            background: var(--smg-primary);
            color: #fff;
        }
        
        .smg-btn-group {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 25px;
        }
        
        /* Output Section */
        .smg-output-section {
            background: #1a1a2e;
            border-radius: 15px;
            overflow: hidden;
            margin-top: 30px;
        }
        
        .smg-output-header {
            background: linear-gradient(135deg, #2d2d44 0%, #1a1a2e 100%);
            padding: 15px 25px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #3d3d5c;
        }
        
        .smg-output-header h3 {
            color: #fff;
            font-size: 1rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .smg-output-header h3 i {
            color: var(--smg-primary);
        }
        
        .smg-output-actions {
            display: flex;
            gap: 10px;
        }
        
        .smg-output-btn {
            background: rgba(255,255,255,0.1);
            border: none;
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 0.85rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        
        .smg-output-btn:hover {
            background: var(--smg-primary);
        }
        
        .smg-output-body {
            padding: 20px;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .smg-output-code {
            background: transparent;
            border: none;
            color: #69b5ff;
            font-family: 'Fira Code', 'Monaco', monospace;
            font-size: 0.9rem;
            line-height: 1.6;
            width: 100%;
            min-height: 300px;
            resize: none;
            outline: none;
        }
        
        .smg-output-body::-webkit-scrollbar {
            width: 8px;
        }
        
        .smg-output-body::-webkit-scrollbar-track {
            background: #2d2d44;
            border-radius: 4px;
        }
        
        .smg-output-body::-webkit-scrollbar-thumb {
            background: var(--smg-primary);
            border-radius: 4px;
        }
        
        /* Features Section */
        .smg-features {
            padding: 60px 0;
            background: linear-gradient(180deg, #fff 0%, #ffe5d3 100%);
        }
        
        .smg-section-title {
            text-align: center;
            margin-bottom: 50px;
        }
        
        .smg-section-title h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 15px;
        }
        
        .smg-section-title p {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .smg-feature-card {
            background: #fff;
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid #f0f0f0;
        }
        
        .smg-feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--smg-shadow);
            border-color: var(--smg-primary);
        }
        
        .smg-feature-icon {
            width: 80px;
            height: 80px;
            background: var(--smg-gradient);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: #fff;
        }
        
        .smg-feature-card:nth-child(even) .smg-feature-icon {
            background: var(--smg-gradient-blue);
        }
        
        .smg-feature-card h3 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 12px;
        }
        
        .smg-feature-card p {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Schema Types Info */
        .smg-schema-info {
            padding: 60px 0;
            background: #fff;
        }
        
        .smg-schema-info-card {
            background: linear-gradient(135deg, #ffe5d3 0%, #fff 100%);
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
            border-left: 4px solid var(--smg-primary);
            transition: all 0.3s ease;
        }
        
        .smg-schema-info-card:hover {
            transform: translateX(10px);
            box-shadow: var(--smg-shadow);
        }
        
        .smg-schema-info-card h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--smg-primary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .smg-schema-info-card p {
            font-size: 0.95rem;
            color: #555;
            margin: 0;
            line-height: 1.6;
        }
        
        /* FAQ Section */
        .smg-faq {
            padding: 60px 0;
            background: linear-gradient(180deg, #e8f4ff 0%, #fff 100%);
        }
        
        .smg-accordion-item {
            background: #fff;
            border-radius: 12px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            border: 1px solid #e9ecef;
        }
        
        .smg-accordion-header {
            padding: 20px 25px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #1a1a2e;
            transition: all 0.3s ease;
        }
        
        .smg-accordion-header:hover {
            background: var(--smg-tertiary);
        }
        
        .smg-accordion-header.active {
            background: var(--smg-gradient);
            color: #fff;
        }
        
        .smg-accordion-header i {
            transition: transform 0.3s ease;
        }
        
        .smg-accordion-header.active i {
            transform: rotate(180deg);
        }
        
        .smg-accordion-body {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .smg-accordion-body.show {
            padding: 20px 25px;
            max-height: 500px;
        }
        
        .smg-accordion-body p {
            margin: 0;
            color: #555;
            line-height: 1.7;
        }
        
        /* How to Use Section */
        .smg-how-to {
            padding: 60px 0;
            background: #fff;
        }
        
        .smg-step {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 16px;
            transition: all 0.3s ease;
        }
        
        .smg-step:hover {
            background: var(--smg-tertiary);
            transform: translateX(10px);
        }
        
        .smg-step-number {
            width: 50px;
            height: 50px;
            background: var(--smg-gradient);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.2rem;
            flex-shrink: 0;
        }
        
        .smg-step:nth-child(even) .smg-step-number {
            background: var(--smg-gradient-blue);
        }
        
        .smg-step-content h4 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1a1a2e;
            margin-bottom: 8px;
        }
        
        .smg-step-content p {
            margin: 0;
            color: #666;
            line-height: 1.6;
        }
        
        /* Content Section */
        .smg-content {
            padding: 60px 0;
            background: linear-gradient(180deg, #fff 0%, #ffe5d3 50%, #fff 100%);
        }
        
        .smg-content-block {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .smg-content-block h2 {
            font-size: 1.8rem;
            font-weight: 700;
            color: #1a1a2e;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        
        .smg-content-block h2::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--smg-gradient);
            border-radius: 2px;
        }
        
        .smg-content-block h3 {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--smg-primary);
            margin: 25px 0 15px;
        }
        
        .smg-content-block p {
            font-size: 1rem;
            color: #555;
            line-height: 1.8;
            margin-bottom: 15px;
        }
        
        .smg-content-block ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .smg-content-block ul li {
            padding: 10px 0 10px 30px;
            position: relative;
            color: #555;
            line-height: 1.6;
        }
        
        .smg-content-block ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--smg-primary);
        }
        
        /* Popup Modal */
        .smg-modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            backdrop-filter: blur(5px);
        }
        
        .smg-modal-overlay.show {
            display: flex;
        }
        
        .smg-modal {
            background: #fff;
            border-radius: 20px;
            max-width: 500px;
            width: 90%;
            overflow: hidden;
            animation: smg-modal-in 0.3s ease;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
        }
        
        @keyframes smg-modal-in {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(-20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
        
        .smg-modal-header {
            padding: 25px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .smg-modal-header.success {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        }
        
        .smg-modal-header.error {
            background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
        }
        
        .smg-modal-header.info {
            background: var(--smg-gradient);
        }
        
        .smg-modal-header h4 {
            color: #fff;
            font-size: 1.2rem;
            font-weight: 600;
            margin: 0;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .smg-modal-close {
            background: rgba(255,255,255,0.2);
            border: none;
            color: #fff;
            width: 35px;
            height: 35px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .smg-modal-close:hover {
            background: rgba(255,255,255,0.3);
            transform: rotate(90deg);
        }
        
        .smg-modal-body {
            padding: 30px;
            text-align: center;
        }
        
        .smg-modal-body p {
            font-size: 1rem;
            color: #555;
            margin: 0 0 20px;
            line-height: 1.6;
        }
        
        .smg-modal-body .smg-btn {
            min-width: 150px;
        }
        
        /* Preview Modal */
        .smg-preview-modal {
            max-width: 800px;
        }
        
        .smg-preview-content {
            background: #f8f9fa;
            border-radius: 12px;
            padding: 20px;
            text-align: left;
            max-height: 400px;
            overflow-y: auto;
        }
        
        .smg-preview-content pre {
            margin: 0;
            white-space: pre-wrap;
            word-wrap: break-word;
            font-size: 0.85rem;
            color: #1a1a2e;
        }
        
        /* Loading Spinner */
        .smg-spinner {
            display: none;
            width: 40px;
            height: 40px;
            border: 4px solid #f3f3f3;
            border-top: 4px solid var(--smg-primary);
            border-radius: 50%;
            animation: smg-spin 1s linear infinite;
            margin: 0 auto;
        }
        
        @keyframes smg-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        /* Dynamic Fields */
        .smg-dynamic-fields {
            margin-top: 15px;
        }
        
        .smg-dynamic-field-item {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            align-items: flex-start;
        }
        
        .smg-dynamic-field-item .smg-form-control {
            flex: 1;
        }
        
        .smg-add-field-btn,
        .smg-remove-field-btn {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }
        
        .smg-add-field-btn {
            background: var(--smg-secondary);
            color: #fff;
        }
        
        .smg-remove-field-btn {
            background: #dc3545;
            color: #fff;
        }
        
        .smg-add-field-btn:hover,
        .smg-remove-field-btn:hover {
            transform: scale(1.1);
        }
        
        /* Tooltip */
        .smg-tooltip {
            position: relative;
            display: inline-block;
            margin-left: 5px;
            cursor: help;
        }
        
        .smg-tooltip i {
            color: var(--smg-secondary);
            font-size: 0.9rem;
        }
        
        .smg-tooltip-text {
            visibility: hidden;
            width: 250px;
            background-color: #1a1a2e;
            color: #fff;
            text-align: left;
            border-radius: 8px;
            padding: 12px 15px;
            position: absolute;
            z-index: 100;
            bottom: 125%;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0;
            transition: all 0.3s ease;
            font-size: 0.85rem;
            font-weight: 400;
            line-height: 1.5;
        }
        
        .smg-tooltip-text::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            margin-left: -5px;
            border-width: 5px;
            border-style: solid;
            border-color: #1a1a2e transparent transparent transparent;
        }
        
        .smg-tooltip:hover .smg-tooltip-text {
            visibility: visible;
            opacity: 1;
        }
        
        /* Tabs */
        .smg-tabs {
            display: flex;
            gap: 5px;
            background: #f0f0f0;
            padding: 5px;
            border-radius: 12px;
            margin-bottom: 25px;
        }
        
        .smg-tab {
            flex: 1;
            padding: 12px 20px;
            background: transparent;
            border: none;
            border-radius: 8px;
            font-weight: 500;
            color: #666;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .smg-tab:hover {
            color: var(--smg-primary);
        }
        
        .smg-tab.active {
            background: var(--smg-gradient);
            color: #fff;
            box-shadow: var(--smg-shadow);
        }
        
        .smg-tab-content {
            display: none;
        }
        
        .smg-tab-content.active {
            display: block;
        }
        
        /* Stats Section */
        .smg-stats {
            padding: 40px 0;
            background: var(--smg-gradient);
        }
        
        .smg-stat-item {
            text-align: center;
            color: #fff;
        }
        
        .smg-stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .smg-stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .smg-ad-space {
                min-height: 150px;
                margin-bottom: 30px;
                position: static;
            }
            
            .smg-hero h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 767px) {
            .smg-hero {
                padding: 40px 0 60px;
            }
            
            .smg-hero h1 {
                font-size: 1.6rem;
            }
            
            .smg-hero p {
                font-size: 1rem;
            }
            
            .smg-schema-types {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .smg-tool-body {
                padding: 20px;
            }
            
            .smg-btn-group {
                flex-direction: column;
            }
            
            .smg-btn {
                width: 100%;
            }
            
            .smg-output-header {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }
            
            .smg-section-title h2 {
                font-size: 1.6rem;
            }
            
            .smg-content-block {
                padding: 25px;
            }
            
            .smg-step {
                flex-direction: column;
                text-align: center;
            }
            
            .smg-step-number {
                margin: 0 auto;
            }
        }
        
        @media (max-width: 575px) {
            .smg-schema-types {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .smg-schema-type-btn {
                padding: 12px 8px;
            }
            
            .smg-schema-type-btn i {
                font-size: 1.2rem;
            }
            
            .smg-schema-type-btn span {
                font-size: 0.75rem;
            }
        }
        
        /* Print Styles */
        @media print {
            .smg-ad-space,
            .smg-btn-group,
            .smg-modal-overlay {
                display: none !important;
            }
        }