/**
 * LicenShield Admin Styles
 * A beautiful, modern admin experience
 */

/* ==========================================================================
   CSS Variables - Design System
   ========================================================================== */

:root {
    /* Brand Colors */
    --ls-primary: #1E40AF;
    --ls-primary-dark: #1e3a8a;
    --ls-primary-light: #3b82f6;
    --ls-accent: #06B6D4;
    --ls-accent-dark: #0891b2;
    --ls-accent-light: #22d3ee;
    
    /* Semantic Colors */
    --ls-success: #10b981;
    --ls-success-light: #d1fae5;
    --ls-warning: #f59e0b;
    --ls-warning-light: #fef3c7;
    --ls-danger: #ef4444;
    --ls-danger-light: #fee2e2;
    --ls-info: #3b82f6;
    --ls-info-light: #dbeafe;
    
    /* Neutrals */
    --ls-gray-50: #f8fafc;
    --ls-gray-100: #f1f5f9;
    --ls-gray-200: #e2e8f0;
    --ls-gray-300: #cbd5e1;
    --ls-gray-400: #94a3b8;
    --ls-gray-500: #64748b;
    --ls-gray-600: #475569;
    --ls-gray-700: #334155;
    --ls-gray-800: #1e293b;
    --ls-gray-900: #0f172a;
    
    /* Spacing */
    --ls-space-xs: 4px;
    --ls-space-sm: 8px;
    --ls-space-md: 16px;
    --ls-space-lg: 24px;
    --ls-space-xl: 32px;
    --ls-space-2xl: 48px;
    
    /* Border Radius */
    --ls-radius-sm: 6px;
    --ls-radius-md: 8px;
    --ls-radius-lg: 12px;
    --ls-radius-xl: 16px;
    --ls-radius-full: 9999px;
    
    /* Shadows */
    --ls-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --ls-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --ls-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --ls-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Transitions */
    --ls-transition-fast: 0.15s ease;
    --ls-transition-normal: 0.2s ease;
    --ls-transition-slow: 0.3s ease;
}

/* ==========================================================================
   Base Wrapper & Typography
   ========================================================================== */

.ls-wrap {
    max-width: 1400px;
    margin: 20px 20px 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.ls-wrap h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--ls-gray-800);
    margin-bottom: var(--ls-space-lg);
    display: flex;
    align-items: center;
    gap: var(--ls-space-md);
}

.ls-wrap h1 .ls-logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
    border-radius: var(--ls-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-page-description {
    color: var(--ls-gray-500);
    font-size: 15px;
    margin-top: -15px;
    margin-bottom: var(--ls-space-lg);
}

/* ==========================================================================
   Header Bar
   ========================================================================== */

.ls-header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--ls-space-lg);
    flex-wrap: wrap;
    gap: var(--ls-space-md);
}

.ls-header-bar h1 {
    margin-bottom: 0;
}

.ls-header-actions {
    display: flex;
    gap: var(--ls-space-sm);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.ls-card {
    background: white;
    border-radius: var(--ls-radius-lg);
    box-shadow: var(--ls-shadow-md);
    overflow: visible;
    transition: box-shadow var(--ls-transition-normal);
}

.ls-card:hover {
    box-shadow: var(--ls-shadow-lg);
}

.ls-card-header {
    overflow: hidden;
    padding: var(--ls-space-md) var(--ls-space-lg);
    background: linear-gradient(135deg, var(--ls-gray-50) 0%, white 100%);
    border-bottom: 1px solid var(--ls-gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ls-card-header h2 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-gray-800);
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
}

.ls-card-header h2 .dashicons,
.ls-card-header h2 .ls-icon {
    color: var(--ls-primary);
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.ls-card-header a {
    color: var(--ls-primary);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: color var(--ls-transition-fast);
}

.ls-card-header a:hover {
    color: var(--ls-primary-dark);
}

.ls-card-body {
    padding: var(--ls-space-lg);
}

.ls-card-footer {
    padding: var(--ls-space-md) var(--ls-space-lg);
    background: var(--ls-gray-50);
    border-top: 1px solid var(--ls-gray-200);
}

/* Card Variants */
.ls-card-primary .ls-card-header {
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
    border-bottom: none;
}

.ls-card-primary .ls-card-header h2 {
    color: white;
}

.ls-card-primary .ls-card-header h2 .dashicons {
    color: rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   Stats Cards
   ========================================================================== */

.ls-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--ls-space-lg);
    margin-bottom: var(--ls-space-xl);
}

.ls-stat-card {
    background: white;
    border-radius: var(--ls-radius-lg);
    padding: var(--ls-space-lg);
    box-shadow: var(--ls-shadow-md);
    display: flex;
    align-items: flex-start;
    gap: var(--ls-space-md);
    transition: all var(--ls-transition-normal);
    position: relative;
    overflow: hidden;
}

.ls-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ls-primary), var(--ls-accent));
}

.ls-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--ls-shadow-lg);
}

.ls-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--ls-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-stat-card:nth-child(1) .ls-stat-icon {
    background: linear-gradient(135deg, #10b981 0%, #34d399 100%);
}

.ls-stat-card:nth-child(2) .ls-stat-icon {
    background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-accent) 100%);
}

.ls-stat-card:nth-child(3) .ls-stat-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}

.ls-stat-card:nth-child(4) .ls-stat-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

.ls-stat-icon .dashicons {
    color: white;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.ls-stat-content {
    flex: 1;
    min-width: 0;
}

.ls-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--ls-gray-800);
    line-height: 1.2;
}

.ls-stat-label {
    display: block;
    font-size: 13px;
    color: var(--ls-gray-500);
    margin-top: 2px;
}

.ls-stat-change {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: var(--ls-radius-full);
    margin-top: var(--ls-space-xs);
}

.ls-stat-change.positive {
    background: var(--ls-success-light);
    color: var(--ls-success);
}

.ls-stat-change.negative {
    background: var(--ls-danger-light);
    color: var(--ls-danger);
}

/* ==========================================================================
   Charts Grid
   ========================================================================== */

.ls-charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--ls-space-lg);
    margin-bottom: var(--ls-space-xl);
}

.ls-chart-card .ls-card-body {
    padding: var(--ls-space-md);
    height: 280px;
}

/* ==========================================================================
   Dashboard Grid
   ========================================================================== */

.ls-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--ls-space-lg);
}

.ls-dashboard-grid .ls-card {
    grid-column: span 6;
}

.ls-dashboard-grid .ls-card-wide {
    grid-column: span 12;
}

.ls-dashboard-grid .ls-card-third {
    grid-column: span 4;
}

@media (max-width: 1200px) {
    .ls-dashboard-grid .ls-card,
    .ls-dashboard-grid .ls-card-third {
        grid-column: span 12;
    }
}

/* ==========================================================================
   Tier/Usage Bar
   ========================================================================== */

.ls-tier-bar {
    background: white;
    border-radius: var(--ls-radius-lg);
    padding: var(--ls-space-md) var(--ls-space-lg);
    box-shadow: var(--ls-shadow-md);
    margin-bottom: var(--ls-space-xl);
    display: flex;
    align-items: center;
    gap: var(--ls-space-xl);
    flex-wrap: wrap;
}

.ls-tier-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ls-tier-badge {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--ls-radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-tier-starter {
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
    color: #4338ca;
}

.ls-tier-pro {
    background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-accent) 100%);
    color: white;
}

.ls-tier-agency {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #78350f;
}

.ls-tier-label {
    font-size: 11px;
    color: var(--ls-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-usage-meters {
    display: flex;
    gap: var(--ls-space-xl);
    flex: 1;
}

.ls-usage-meter {
    flex: 1;
    max-width: 200px;
}

.ls-usage-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--ls-gray-600);
    margin-bottom: 4px;
}

.ls-usage-bar {
    height: 8px;
    background: var(--ls-gray-200);
    border-radius: var(--ls-radius-full);
    overflow: hidden;
}

.ls-usage-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ls-primary), var(--ls-accent));
    border-radius: var(--ls-radius-full);
    transition: width var(--ls-transition-slow);
}

.ls-usage-text {
    display: block;
    font-size: 11px;
    color: var(--ls-gray-500);
    margin-top: 4px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.ls-btn,
.ls-wrap .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--ls-radius-md);
    border: 1px solid var(--ls-gray-300);
    background: white;
    color: var(--ls-gray-700);
    cursor: pointer;
    transition: all var(--ls-transition-fast);
    text-decoration: none;
    line-height: 1.4;
}

.ls-btn:hover,
.ls-wrap .button:hover {
    background: var(--ls-gray-50);
    border-color: var(--ls-gray-400);
    color: var(--ls-gray-800);
}

.ls-btn-primary,
.ls-wrap .button-primary {
    background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-primary-light) 100%);
    border: none;
    color: white !important;
    padding: 9px 18px;
}

.ls-btn-primary:hover,
.ls-wrap .button-primary:hover {
    background: linear-gradient(135deg, var(--ls-primary-dark) 0%, var(--ls-primary) 100%);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

.ls-btn-success {
    background: linear-gradient(135deg, var(--ls-success) 0%, #34d399 100%);
    border: none;
    color: white;
}

.ls-btn-danger {
    background: linear-gradient(135deg, var(--ls-danger) 0%, #f87171 100%);
    border: none;
    color: white;
}

.ls-btn-lg {
    padding: 12px 24px;
    font-size: 15px;
}

.ls-btn-sm,
.ls-wrap .button-small {
    padding: 5px 10px;
    font-size: 12px;
}

.ls-btn .dashicons,
.ls-wrap .button .dashicons {
    font-size: 16px;
    width: 16px;
    height: 16px;
}

/* ==========================================================================
   Quick Actions
   ========================================================================== */

.ls-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--ls-space-sm);
}

.ls-quick-actions .button,
.ls-quick-actions .ls-btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
}

/* ==========================================================================
   Tables
   ========================================================================== */

.ls-wrap .wp-list-table {
    border: none;
    border-radius: var(--ls-radius-md);
    overflow: hidden;
    border-collapse: separate;
    border-spacing: 0;
}

.ls-wrap .wp-list-table thead th {
    background: var(--ls-gray-50);
    border-bottom: 2px solid var(--ls-gray-200);
    color: var(--ls-gray-700);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 16px;
}

.ls-wrap .wp-list-table tbody td {
    padding: 14px 16px;
    vertical-align: middle;
    border-bottom: 1px solid var(--ls-gray-100);
}

.ls-wrap .wp-list-table tbody tr:hover {
    background: var(--ls-gray-50);
}

.ls-wrap .wp-list-table tbody tr:last-child td {
    border-bottom: none;
}

.ls-wrap .wp-list-table code {
    background: var(--ls-gray-100);
    padding: 4px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 12px;
    color: var(--ls-gray-700);
}

/* Table Actions */
.ls-table-actions {
    display: flex;
    gap: 8px;
}

.ls-table-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: var(--ls-radius-md);
    background: var(--ls-gray-100);
    color: var(--ls-gray-600);
    transition: all var(--ls-transition-fast);
    text-decoration: none;
}

.ls-table-actions a:hover {
    background: var(--ls-primary);
    color: white;
}

.ls-table-actions a.delete:hover {
    background: var(--ls-danger);
}

/* Row Actions */
.ls-wrap .row-actions {
    visibility: visible;
    padding-top: 6px;
}

.ls-wrap .row-actions span {
    padding-right: 0;
}

.ls-wrap .row-actions a {
    color: var(--ls-primary);
    text-decoration: none;
    font-size: 12px;
    padding: 2px 8px;
    border-radius: var(--ls-radius-sm);
    transition: all var(--ls-transition-fast);
}

.ls-wrap .row-actions a:hover {
    background: var(--ls-primary);
    color: white;
}

.ls-wrap .row-actions .delete a,
.ls-wrap .row-actions .trash a {
    color: var(--ls-danger);
}

.ls-wrap .row-actions .delete a:hover,
.ls-wrap .row-actions .trash a:hover {
    background: var(--ls-danger);
    color: white;
}

/* ==========================================================================
   Status Badges
   ========================================================================== */

.ls-status {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: var(--ls-radius-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ls-status::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-right: 6px;
}

.ls-status-active {
    background: var(--ls-success-light);
    color: #065f46;
}

.ls-status-active::before {
    background: var(--ls-success);
}

.ls-status-expired {
    background: var(--ls-danger-light);
    color: #991b1b;
}

.ls-status-expired::before {
    background: var(--ls-danger);
}

.ls-status-suspended,
.ls-status-inactive {
    background: var(--ls-warning-light);
    color: #92400e;
}

.ls-status-suspended::before,
.ls-status-inactive::before {
    background: var(--ls-warning);
}

.ls-status-pending {
    background: var(--ls-info-light);
    color: #1e40af;
}

.ls-status-pending::before {
    background: var(--ls-info);
}

.ls-status-completed {
    background: var(--ls-success-light);
    color: #065f46;
}

.ls-status-completed::before {
    background: var(--ls-success);
}

.ls-status-refunded {
    background: var(--ls-gray-100);
    color: var(--ls-gray-600);
}

.ls-status-refunded::before {
    background: var(--ls-gray-400);
}

/* ==========================================================================
   Forms
   ========================================================================== */

/* ── Product / License editor layout ── */
.ls-editor-layout {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.ls-editor-main > .ls-card,
.ls-editor-layout > .ls-card {
    margin-bottom: 24px;
}

.ls-form-section {
    margin-bottom: var(--ls-space-xl);
}

.ls-form-section-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-gray-800);
    margin-bottom: var(--ls-space-md);
    padding-bottom: var(--ls-space-sm);
    border-bottom: 2px solid var(--ls-gray-200);
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
}

.ls-form-section-title .dashicons {
    color: var(--ls-primary);
}

.ls-form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ls-space-lg);
    margin-bottom: var(--ls-space-md);
}

.ls-form-field {
    margin-bottom: var(--ls-space-md);
}

.ls-form-field label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--ls-gray-700);
    margin-bottom: 6px;
}

.ls-form-field label .required {
    color: var(--ls-danger);
}

.ls-form-field input[type="text"],
.ls-form-field input[type="email"],
.ls-form-field input[type="url"],
.ls-form-field input[type="password"],
.ls-form-field input[type="number"],
.ls-form-field select,
.ls-form-field textarea,
.ls-wrap input[type="text"],
.ls-wrap input[type="email"],
.ls-wrap input[type="url"],
.ls-wrap input[type="password"],
.ls-wrap input[type="number"],
.ls-wrap select,
.ls-wrap textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--ls-gray-300);
    border-radius: var(--ls-radius-md);
    font-size: 14px;
    color: var(--ls-gray-800);
    background: white;
    transition: all var(--ls-transition-fast);
}

.ls-form-field input:focus,
.ls-form-field select:focus,
.ls-form-field textarea:focus,
.ls-wrap input:focus,
.ls-wrap select:focus,
.ls-wrap textarea:focus {
    outline: none;
    border-color: var(--ls-primary);
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.ls-form-field textarea {
    min-height: 100px;
    resize: none;
}

.ls-form-field .description,
.ls-field-hint {
    margin-top: 6px;
    font-size: 12px;
    color: var(--ls-gray-500);
}

/* Checkbox/Radio */
.ls-checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.ls-checkbox-field input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--ls-primary);
}

/* ==========================================================================
   Notices
   ========================================================================== */

.ls-notice {
    display: flex;
    align-items: flex-start;
    gap: var(--ls-space-md);
    padding: var(--ls-space-md) var(--ls-space-lg);
    border-radius: var(--ls-radius-md);
    margin-bottom: var(--ls-space-lg);
}

.ls-notice .dashicons {
    flex-shrink: 0;
    font-size: 24px;
    width: 24px;
    height: 24px;
}

.ls-notice strong {
    display: block;
    margin-bottom: 4px;
}

.ls-notice p {
    margin: 0 0 var(--ls-space-sm);
}

.ls-notice-warning {
    background: var(--ls-warning-light);
    border-left: 4px solid var(--ls-warning);
}

.ls-notice-warning .dashicons {
    color: var(--ls-warning);
}

.ls-notice-success {
    background: var(--ls-success-light);
    border-left: 4px solid var(--ls-success);
}

.ls-notice-success .dashicons {
    color: var(--ls-success);
}

.ls-notice-error {
    background: var(--ls-danger-light);
    border-left: 4px solid var(--ls-danger);
}

.ls-notice-error .dashicons {
    color: var(--ls-danger);
}

.ls-notice-info {
    background: var(--ls-info-light);
    border-left: 4px solid var(--ls-info);
}

.ls-notice-info .dashicons {
    color: var(--ls-info);
}

/* ==========================================================================
   API Table
   ========================================================================== */

.ls-api-table {
    width: 100%;
    border-collapse: collapse;
}

.ls-api-table td {
    padding: 10px 0;
    border-bottom: 1px solid var(--ls-gray-100);
    font-size: 13px;
}

.ls-api-table tr:last-child td {
    border-bottom: none;
}

.ls-api-table code {
    background: var(--ls-gray-100);
    padding: 4px 8px;
    border-radius: var(--ls-radius-sm);
    font-size: 12px;
}

.ls-api-table td:first-child code {
    background: var(--ls-primary);
    color: white;
}

/* ==========================================================================
   Empty State
   ========================================================================== */

.ls-empty-state {
    text-align: center;
    padding: var(--ls-space-2xl);
}

.ls-empty-state .dashicons {
    font-size: 48px;
    width: 48px;
    height: 48px;
    color: var(--ls-gray-300);
    margin-bottom: var(--ls-space-md);
}

.ls-empty-state h3 {
    font-size: 18px;
    color: var(--ls-gray-700);
    margin-bottom: var(--ls-space-sm);
}

.ls-empty-state p {
    color: var(--ls-gray-500);
    margin-bottom: var(--ls-space-lg);
}

.ls-no-items {
    text-align: center;
    padding: var(--ls-space-xl);
    color: var(--ls-gray-500);
}

/* ==========================================================================
   Settings Tabs
   ========================================================================== */

.ls-settings-tabs {
    display: flex;
    gap: 0;
    background: var(--ls-gray-100);
    border-radius: var(--ls-radius-md);
    padding: 4px;
    margin-bottom: var(--ls-space-lg);
    width: fit-content;
}

.ls-settings-tab {
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ls-gray-600);
    background: transparent;
    border: none;
    border-radius: var(--ls-radius-sm);
    cursor: pointer;
    transition: all var(--ls-transition-fast);
    text-decoration: none;
}

.ls-settings-tab:hover {
    color: var(--ls-gray-800);
}

.ls-settings-tab.active {
    background: white;
    color: var(--ls-primary);
    box-shadow: var(--ls-shadow-sm);
}

.ls-settings-panel {
    display: none;
}

.ls-settings-panel.active {
    display: block;
}

/* ==========================================================================
   License Key Display
   ========================================================================== */

.ls-license-key {
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
    background: var(--ls-gray-100);
    padding: var(--ls-space-sm) var(--ls-space-md);
    border-radius: var(--ls-radius-md);
    font-family: monospace;
    font-size: 14px;
}

.ls-license-key code {
    flex: 1;
    background: none;
    padding: 0;
}

.ls-copy-btn {
    padding: 4px 8px;
    font-size: 11px;
}

/* ==========================================================================
   Activations List
   ========================================================================== */

.ls-activations-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ls-activation-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--ls-space-md);
    border: 1px solid var(--ls-gray-200);
    border-radius: var(--ls-radius-md);
    margin-bottom: var(--ls-space-sm);
    background: var(--ls-gray-50);
}

.ls-activation-item:last-child {
    margin-bottom: 0;
}

.ls-activation-site {
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
}

.ls-activation-site .dashicons {
    color: var(--ls-gray-400);
}

.ls-activation-site code {
    background: white;
}

/* ==========================================================================
   Loading State
   ========================================================================== */

.ls-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--ls-space-2xl);
}

.ls-spinner {
    width: 32px;
    height: 32px;
    border: 3px solid var(--ls-gray-200);
    border-top-color: var(--ls-primary);
    border-radius: 50%;
    animation: ls-spin 1s linear infinite;
}

@keyframes ls-spin {
    to {
        transform: rotate(360deg);
    }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 782px) {
    .ls-wrap {
        margin: 10px;
    }
    
    .ls-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .ls-charts-grid {
        grid-template-columns: 1fr;
    }
    
    .ls-tier-bar {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .ls-usage-meters {
        width: 100%;
        flex-direction: column;
        gap: var(--ls-space-md);
    }
    
    .ls-usage-meter {
        max-width: 100%;
    }
    
    .ls-header-bar {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .ls-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Welcome Banner
   ========================================================================== */

.ls-welcome-banner {
    background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-accent) 100%);
    border-radius: var(--ls-radius-xl);
    padding: var(--ls-space-xl);
    margin-bottom: var(--ls-space-xl);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--ls-space-lg);
}

.ls-welcome-content h2 {
    font-size: 24px;
    margin: 0 0 var(--ls-space-sm);
    color: white;
}

.ls-welcome-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 15px;
}

.ls-welcome-actions {
    display: flex;
    gap: var(--ls-space-sm);
}

.ls-welcome-actions .button {
    background: white !important;
    color: var(--ls-primary) !important;
    border: none !important;
}

.ls-welcome-actions .button:hover {
    background: rgba(255,255,255,0.9) !important;
    color: var(--ls-primary-dark) !important;
}

.ls-welcome-actions .button-secondary {
    background: rgba(255,255,255,0.2) !important;
    color: white !important;
    border: 1px solid rgba(255,255,255,0.3) !important;
}

.ls-welcome-actions .button-secondary:hover {
    background: rgba(255,255,255,0.3) !important;
    color: white !important;
}

/* ==========================================================================
   Page Title Actions
   ========================================================================== */
   
.ls-wrap .page-title-action {
    background: linear-gradient(135deg, var(--ls-primary) 0%, var(--ls-primary-light) 100%);
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: var(--ls-radius-md);
    font-weight: 500;
    text-decoration: none;
    transition: all var(--ls-transition-fast);
}

.ls-wrap .page-title-action:hover {
    background: linear-gradient(135deg, var(--ls-primary-dark) 0%, var(--ls-primary) 100%);
    color: white;
}

/* ==========================================================================
   Tab Navigation for Edit Pages
   ========================================================================== */

.ls-edit-tabs {
    display: flex;
    border-bottom: 2px solid var(--ls-gray-200);
    margin-bottom: var(--ls-space-lg);
}

.ls-edit-tab {
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--ls-gray-600);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: all var(--ls-transition-fast);
}

.ls-edit-tab:hover {
    color: var(--ls-primary);
}

.ls-edit-tab.active {
    color: var(--ls-primary);
    border-bottom-color: var(--ls-primary);
}

/* ==========================================================================
   Metabox Style Cards
   ========================================================================== */

.ls-metabox {
    background: white;
    border-radius: var(--ls-radius-lg);
    box-shadow: var(--ls-shadow-md);
    margin-bottom: var(--ls-space-lg);
}

.ls-metabox-header {
    padding: var(--ls-space-md) var(--ls-space-lg);
    border-bottom: 1px solid var(--ls-gray-200);
    background: linear-gradient(135deg, var(--ls-gray-50), white);
    border-radius: var(--ls-radius-lg) var(--ls-radius-lg) 0 0;
}

.ls-metabox-header h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--ls-gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
}

.ls-metabox-header h3 .dashicons {
    color: var(--ls-primary);
    font-size: 18px;
    width: 18px;
    height: 18px;
}

.ls-metabox-body {
    padding: var(--ls-space-lg);
}

/* ==========================================================================
   Sidebar Layout
   ========================================================================== */

.ls-edit-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: var(--ls-space-lg);
    align-items: start;
}

.ls-edit-main {
    min-width: 0;
}

.ls-edit-sidebar {
    position: sticky;
    top: 32px;
}

@media (max-width: 1200px) {
    .ls-edit-layout {
        grid-template-columns: 1fr;
    }
    
    .ls-edit-sidebar {
        position: static;
    }
}

/* ==========================================================================
   Publish Box
   ========================================================================== */

.ls-publish-box {
    background: white;
    border-radius: var(--ls-radius-lg);
    box-shadow: var(--ls-shadow-md);
    overflow: hidden;
}

.ls-publish-header {
    padding: var(--ls-space-md) var(--ls-space-lg);
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
    color: white;
}

.ls-publish-header h3 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: white;
}

.ls-publish-body {
    padding: var(--ls-space-lg);
}

.ls-publish-actions {
    display: flex;
    gap: var(--ls-space-sm);
    margin-top: var(--ls-space-md);
}

.ls-publish-actions .button {
    flex: 1;
    justify-content: center;
}

/* Info List in Sidebar */
.ls-info-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ls-info-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--ls-gray-100);
    font-size: 13px;
}

.ls-info-list li:last-child {
    border-bottom: none;
}

.ls-info-list .label {
    color: var(--ls-gray-500);
}

.ls-info-list .value {
    font-weight: 500;
    color: var(--ls-gray-800);
}

/* ==========================================================================
   Setup Wizard
   ========================================================================== */

.ls-wizard-app {
    background: var(--ls-gray-100);
    min-height: 100vh;
}

.ls-wizard-header {
    margin-bottom: 0;
}

.ls-wizard-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--ls-space-xl);
    padding: var(--ls-space-xl);
    max-width: 1400px;
    margin: 0 auto;
}

/* Wizard Sidebar */
.ls-wizard-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--ls-space-lg);
}

.ls-wizard-progress-card {
    background: white;
    border-radius: var(--ls-radius-lg);
    padding: var(--ls-space-lg);
    box-shadow: var(--ls-shadow-md);
}

.ls-wizard-progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--ls-space-sm);
}

.ls-wizard-progress-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--ls-gray-700);
}

.ls-wizard-progress-percent {
    font-size: 13px;
    font-weight: 700;
    color: var(--ls-primary);
}

.ls-wizard-progress-bar {
    height: 8px;
    background: var(--ls-gray-200);
    border-radius: var(--ls-radius-full);
    overflow: hidden;
}

.ls-wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--ls-primary), var(--ls-accent));
    border-radius: var(--ls-radius-full);
    transition: width 0.5s ease;
}

/* Wizard Steps Nav */
.ls-wizard-steps {
    background: white;
    border-radius: var(--ls-radius-lg);
    box-shadow: var(--ls-shadow-md);
    overflow: hidden;
}

.ls-wizard-step {
    display: flex;
    align-items: center;
    gap: var(--ls-space-md);
    padding: var(--ls-space-md) var(--ls-space-lg);
    border-bottom: 1px solid var(--ls-gray-100);
    text-decoration: none;
    color: var(--ls-gray-600);
    transition: all var(--ls-transition-fast);
}

.ls-wizard-step:last-child {
    border-bottom: none;
}

.ls-wizard-step:hover {
    background: var(--ls-gray-50);
    color: var(--ls-gray-800);
}

.ls-wizard-step.current {
    background: linear-gradient(90deg, rgba(30, 64, 175, 0.08), rgba(6, 182, 212, 0.05));
    color: var(--ls-primary);
    border-left: 3px solid var(--ls-primary);
}

.ls-wizard-step.complete {
    color: var(--ls-success);
}

.ls-wizard-step.complete .ls-wizard-step-icon {
    background: var(--ls-success);
    color: white;
}

.ls-wizard-step-icon {
    width: 28px;
    height: 28px;
    border-radius: var(--ls-radius-full);
    background: var(--ls-gray-200);
    color: var(--ls-gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    flex-shrink: 0;
}

.ls-wizard-step.current .ls-wizard-step-icon {
    background: var(--ls-primary);
    color: white;
}

.ls-wizard-step-name {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

.ls-wizard-step-arrow {
    color: var(--ls-primary);
}

/* Wizard Help Box */
.ls-wizard-help {
    background: white;
    border-radius: var(--ls-radius-lg);
    padding: var(--ls-space-lg);
    box-shadow: var(--ls-shadow-md);
    display: flex;
    gap: var(--ls-space-md);
}

.ls-wizard-help-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--ls-radius-md);
    background: var(--ls-info-light);
    color: var(--ls-info);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-wizard-help-text strong {
    display: block;
    font-size: 14px;
    color: var(--ls-gray-800);
    margin-bottom: 4px;
}

.ls-wizard-help-text p {
    font-size: 13px;
    color: var(--ls-gray-500);
    margin: 0;
}

.ls-wizard-help-text a {
    color: var(--ls-primary);
}

/* Wizard Content Panel */
.ls-wizard-content {
    min-width: 0;
}

.ls-wizard-panel {
    background: white;
    border-radius: var(--ls-radius-xl);
    box-shadow: var(--ls-shadow-lg);
    padding: var(--ls-space-2xl);
}

.ls-wizard-panel-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--ls-radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: var(--ls-space-lg);
}

.ls-wizard-panel h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ls-gray-800);
    margin: 0 0 var(--ls-space-sm) 0;
}

.ls-wizard-description {
    font-size: 16px;
    color: var(--ls-gray-500);
    margin-bottom: var(--ls-space-xl);
    line-height: 1.6;
}

/* Wizard Status Badges */
.ls-wizard-status {
    display: inline-flex;
    align-items: center;
    gap: var(--ls-space-sm);
    padding: var(--ls-space-sm) var(--ls-space-md);
    border-radius: var(--ls-radius-md);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--ls-space-lg);
}

.ls-wizard-status-success {
    background: var(--ls-success-light);
    color: #065f46;
}

.ls-wizard-status-warning {
    background: var(--ls-warning-light);
    color: #92400e;
}

/* Wizard Features Grid (Welcome) */
.ls-wizard-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--ls-space-md);
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-feature {
    display: flex;
    align-items: center;
    gap: var(--ls-space-md);
    padding: var(--ls-space-md);
    background: var(--ls-gray-50);
    border-radius: var(--ls-radius-md);
    transition: all var(--ls-transition-fast);
}

.ls-wizard-feature:hover {
    background: var(--ls-gray-100);
    transform: translateX(4px);
}

.ls-wizard-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--ls-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-wizard-feature-text strong {
    display: block;
    font-size: 14px;
    color: var(--ls-gray-800);
}

.ls-wizard-feature-text span {
    font-size: 13px;
    color: var(--ls-gray-500);
}

.ls-wizard-time {
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
    font-size: 14px;
    color: var(--ls-gray-500);
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-time svg {
    color: var(--ls-gray-400);
}

/* Wizard Instructions */
.ls-wizard-instructions {
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-instructions h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-gray-800);
    margin: 0 0 var(--ls-space-lg) 0;
}

.ls-wizard-instructions ol {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: step;
}

.ls-wizard-instructions ol li {
    position: relative;
    padding-left: 48px;
    padding-bottom: var(--ls-space-lg);
    margin-bottom: var(--ls-space-lg);
    border-bottom: 1px solid var(--ls-gray-100);
}

.ls-wizard-instructions ol li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ls-wizard-instructions ol li::before {
    counter-increment: step;
    content: counter(step);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: var(--ls-radius-full);
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-wizard-instructions ol li strong {
    display: block;
    font-size: 15px;
    color: var(--ls-gray-800);
    margin-bottom: 4px;
}

.ls-wizard-instructions ol li p {
    font-size: 14px;
    color: var(--ls-gray-600);
    margin: 0 0 var(--ls-space-sm) 0;
}

/* Wizard Code Boxes */
.ls-wizard-code-box {
    background: var(--ls-gray-800);
    border-radius: var(--ls-radius-md);
    padding: var(--ls-space-md);
    margin-top: var(--ls-space-sm);
    position: relative;
}

.ls-wizard-code-box label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--ls-gray-400);
    margin-bottom: var(--ls-space-xs);
}

.ls-wizard-code {
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
}

.ls-wizard-code code {
    flex: 1;
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 13px;
    color: #22d3ee;
    word-break: break-all;
}

.ls-wizard-code-box pre {
    margin: 0;
    overflow-x: auto;
}

.ls-wizard-code-box pre code {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.6;
    color: #e2e8f0;
    display: block;
}

.ls-wizard-copy-btn {
    padding: var(--ls-space-xs) var(--ls-space-sm);
    background: var(--ls-gray-700);
    border: none;
    border-radius: var(--ls-radius-sm);
    color: var(--ls-gray-300);
    cursor: pointer;
    transition: all var(--ls-transition-fast);
    flex-shrink: 0;
}

.ls-wizard-copy-btn:hover {
    background: var(--ls-gray-600);
    color: white;
}

.ls-wizard-copy-code {
    position: absolute;
    top: var(--ls-space-sm);
    right: var(--ls-space-sm);
}

.ls-wizard-note {
    font-size: 12px !important;
    color: var(--ls-gray-500) !important;
    background: var(--ls-gray-50);
    padding: var(--ls-space-sm) var(--ls-space-md);
    border-radius: var(--ls-radius-sm);
    border-left: 3px solid var(--ls-info);
}

.ls-wizard-note code {
    background: var(--ls-gray-200);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 11px;
}

/* Wizard Step Boxes (SDK) */
.ls-wizard-step-box {
    display: flex;
    gap: var(--ls-space-md);
    padding: var(--ls-space-lg);
    background: var(--ls-gray-50);
    border-radius: var(--ls-radius-md);
    margin-bottom: var(--ls-space-md);
}

/* Wizard Simple Steps */
.ls-wizard-simple-steps {
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-simple-step {
    display: flex;
    align-items: flex-start;
    gap: var(--ls-space-md);
    padding: var(--ls-space-lg);
    background: var(--ls-gray-50);
    border-radius: var(--ls-radius-md);
    margin-bottom: var(--ls-space-md);
}

.ls-wizard-simple-step:last-child {
    margin-bottom: 0;
}

.ls-wizard-simple-num {
    width: 32px;
    height: 32px;
    border-radius: var(--ls-radius-full);
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-wizard-simple-content {
    flex: 1;
}

.ls-wizard-simple-content strong {
    display: block;
    font-size: 15px;
    color: var(--ls-gray-800);
    margin-bottom: 4px;
}

.ls-wizard-simple-content p {
    font-size: 14px;
    color: var(--ls-gray-600);
    margin: 0;
}

.ls-wizard-simple-content .ls-wizard-code-box {
    margin-top: var(--ls-space-sm);
}

/* Wizard Path Formatting */
.ls-wizard-path {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 14px;
    color: var(--ls-gray-600);
    margin: 0;
}

.ls-wizard-path span {
    font-weight: 600;
    color: var(--ls-gray-800);
}

.ls-wizard-path .ls-arrow {
    font-weight: 600;
    color: var(--ls-gray-600);
}

.ls-wizard-instructions ol li .ls-wizard-path {
    margin-top: 0;
}

.ls-wizard-step-number {
    width: 32px;
    height: 32px;
    border-radius: var(--ls-radius-full);
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-accent));
    color: white;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ls-wizard-step-content {
    flex: 1;
    min-width: 0;
}

.ls-wizard-step-content strong {
    display: block;
    font-size: 15px;
    color: var(--ls-gray-800);
    margin-bottom: 4px;
}

.ls-wizard-step-content p {
    font-size: 14px;
    color: var(--ls-gray-600);
    margin: 0 0 var(--ls-space-sm) 0;
}

.ls-wizard-step-content .ls-btn {
    margin-top: var(--ls-space-sm);
}

/* Wizard Product Example */
.ls-wizard-product-example {
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-product-example h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--ls-gray-700);
    margin: 0 0 var(--ls-space-md) 0;
}

.ls-wizard-example-card {
    background: var(--ls-gray-50);
    border-radius: var(--ls-radius-md);
    padding: var(--ls-space-lg);
}

.ls-wizard-example-row {
    display: flex;
    justify-content: space-between;
    padding: var(--ls-space-sm) 0;
    border-bottom: 1px solid var(--ls-gray-200);
}

.ls-wizard-example-row:last-child {
    border-bottom: none;
}

.ls-wizard-example-label {
    font-size: 14px;
    color: var(--ls-gray-500);
}

.ls-wizard-example-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ls-gray-800);
}

/* Wizard Finish */
.ls-wizard-panel-finish {
    text-align: center;
}

.ls-wizard-celebration {
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-icon-success {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--ls-space-lg);
}

.ls-wizard-incomplete-list {
    list-style: none;
    padding: 0;
    margin: 0 auto var(--ls-space-xl);
    max-width: 300px;
    text-align: left;
}

.ls-wizard-incomplete-list li {
    display: flex;
    align-items: center;
    gap: var(--ls-space-sm);
    padding: var(--ls-space-sm) 0;
    font-size: 14px;
    color: var(--ls-gray-600);
}

.ls-wizard-incomplete-list svg {
    color: var(--ls-gray-400);
}

/* Wizard Next Steps Grid */
.ls-wizard-next-steps {
    margin-bottom: var(--ls-space-xl);
}

.ls-wizard-next-steps h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-gray-800);
    margin: 0 0 var(--ls-space-lg) 0;
}

.ls-wizard-next-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--ls-space-md);
}

.ls-wizard-next-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--ls-space-sm);
    padding: var(--ls-space-lg);
    background: var(--ls-gray-50);
    border-radius: var(--ls-radius-md);
    text-decoration: none;
    transition: all var(--ls-transition-fast);
}

.ls-wizard-next-card:hover {
    background: var(--ls-gray-100);
    transform: translateY(-2px);
}

.ls-wizard-next-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--ls-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-wizard-next-card strong {
    font-size: 14px;
    color: var(--ls-gray-800);
}

.ls-wizard-next-card span {
    font-size: 13px;
    color: var(--ls-gray-500);
}

/* Wizard Actions */
.ls-wizard-actions {
    display: flex;
    gap: var(--ls-space-md);
    flex-wrap: wrap;
}

.ls-wizard-panel-finish .ls-wizard-actions {
    justify-content: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .ls-wizard-container {
        grid-template-columns: 1fr;
    }
    
    .ls-wizard-sidebar {
        order: 2;
    }
    
    .ls-wizard-content {
        order: 1;
    }
    
    .ls-wizard-features {
        grid-template-columns: 1fr;
    }
    
    .ls-wizard-next-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Tooltips
   ========================================================================== */

.ls-tooltip {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: help;
    color: var(--ls-gray-400);
    margin-left: 4px;
    vertical-align: middle;
    transition: color var(--ls-transition-fast);
}

.ls-tooltip:hover {
    color: var(--ls-primary);
}

.ls-tooltip::before,
.ls-tooltip::after {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    transition: all var(--ls-transition-fast);
    z-index: 1000;
    pointer-events: none;
}

/* Tooltip text bubble */
.ls-tooltip::after {
    content: attr(data-tooltip);
    background: var(--ls-gray-900);
    color: white;
    padding: 8px 12px;
    border-radius: var(--ls-radius-md);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    white-space: normal;
    width: max-content;
    max-width: 250px;
    text-align: left;
    box-shadow: var(--ls-shadow-lg);
}

/* Tooltip arrow */
.ls-tooltip::before {
    content: '';
    border: 6px solid transparent;
}

/* Position: Top (default) */
.ls-tooltip[data-position="top"]::after,
.ls-tooltip:not([data-position])::after {
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
}

.ls-tooltip[data-position="top"]::before,
.ls-tooltip:not([data-position])::before {
    bottom: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    border-top-color: var(--ls-gray-900);
}

/* Position: Bottom */
.ls-tooltip[data-position="bottom"]::after {
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
}

.ls-tooltip[data-position="bottom"]::before {
    top: calc(100% - 4px);
    left: 50%;
    transform: translateX(-50%);
    border-bottom-color: var(--ls-gray-900);
}

/* Position: Left */
.ls-tooltip[data-position="left"]::after {
    right: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
}

.ls-tooltip[data-position="left"]::before {
    right: calc(100% - 4px);
    top: 50%;
    transform: translateY(-50%);
    border-left-color: var(--ls-gray-900);
}

/* Position: Right */
.ls-tooltip[data-position="right"]::after {
    left: calc(100% + 8px);
    top: 50%;
    transform: translateY(-50%);
}

.ls-tooltip[data-position="right"]::before {
    left: calc(100% - 4px);
    top: 50%;
    transform: translateY(-50%);
    border-right-color: var(--ls-gray-900);
}

/* Show on hover */
.ls-tooltip:hover::before,
.ls-tooltip:hover::after {
    visibility: visible;
    opacity: 1;
}

/* ==========================================================================
   Guided Tour
   ========================================================================== */

/* Tour Overlay */
.ls-tour-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99998;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--ls-transition-normal);
    display: none;
}

.ls-tour-overlay.active {
    opacity: 1;
    pointer-events: auto;
    display: block;
}

/* Tour Spotlight (highlight around target element) */
.ls-tour-spotlight {
    position: absolute;
    box-shadow: 0 0 0 9999px rgba(0, 0, 0, 0.5);
    border-radius: var(--ls-radius-md);
    z-index: 99999;
    pointer-events: none;
    transition: all var(--ls-transition-normal);
    display: none;
}

/* Tour Popover */
.ls-tour-popover {
    position: absolute;
    background: white;
    border-radius: var(--ls-radius-lg);
    box-shadow: var(--ls-shadow-xl);
    padding: var(--ls-space-lg);
    width: 320px;
    z-index: 100000;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--ls-transition-normal);
    display: none;
}

.ls-tour-popover.active {
    opacity: 1;
    transform: translateY(0);
    display: block;
}

.ls-tour-popover-arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    background: white;
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.05);
}

/* Arrow positions */
.ls-tour-popover[data-position="bottom"] .ls-tour-popover-arrow {
    top: -6px;
    left: 50%;
    margin-left: -6px;
}

.ls-tour-popover[data-position="top"] .ls-tour-popover-arrow {
    bottom: -6px;
    left: 50%;
    margin-left: -6px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.05);
}

.ls-tour-popover[data-position="left"] .ls-tour-popover-arrow {
    right: -6px;
    top: 50%;
    margin-top: -6px;
    box-shadow: 2px -2px 4px rgba(0, 0, 0, 0.05);
}

.ls-tour-popover[data-position="right"] .ls-tour-popover-arrow {
    left: -6px;
    top: 50%;
    margin-top: -6px;
}

.ls-tour-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: var(--ls-space-sm);
}

.ls-tour-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--ls-gray-800);
    margin: 0;
}

.ls-tour-close {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--ls-gray-400);
    border-radius: var(--ls-radius-sm);
    transition: all var(--ls-transition-fast);
}

.ls-tour-close:hover {
    background: var(--ls-gray-100);
    color: var(--ls-gray-600);
}

.ls-tour-content {
    font-size: 14px;
    color: var(--ls-gray-600);
    line-height: 1.5;
    margin-bottom: var(--ls-space-md);
}

.ls-tour-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.ls-tour-progress {
    display: flex;
    gap: 4px;
}

.ls-tour-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--ls-gray-200);
    transition: background var(--ls-transition-fast);
}

.ls-tour-dot.active {
    background: var(--ls-primary);
}

.ls-tour-dot.completed {
    background: var(--ls-success);
}

.ls-tour-buttons {
    display: flex;
    gap: var(--ls-space-sm);
}

.ls-tour-btn {
    padding: 6px 12px;
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--ls-radius-md);
    cursor: pointer;
    transition: all var(--ls-transition-fast);
}

.ls-tour-btn-skip {
    background: none;
    border: none;
    color: var(--ls-gray-500);
}

.ls-tour-btn-skip:hover {
    color: var(--ls-gray-700);
}

.ls-tour-btn-prev {
    background: white;
    border: 1px solid var(--ls-gray-300);
    color: var(--ls-gray-700);
}

.ls-tour-btn-prev:hover {
    background: var(--ls-gray-50);
    border-color: var(--ls-gray-400);
}

.ls-tour-btn-next {
    background: linear-gradient(135deg, var(--ls-primary), var(--ls-primary-light));
    border: none;
    color: white;
}

.ls-tour-btn-next:hover {
    background: linear-gradient(135deg, var(--ls-primary-dark), var(--ls-primary));
}

/* Tour Start Button (shows in header when tour available) */
.ls-tour-start-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 500;
    color: var(--ls-primary);
    background: rgba(30, 64, 175, 0.1);
    border: none;
    border-radius: var(--ls-radius-full);
    cursor: pointer;
    transition: all var(--ls-transition-fast);
}

.ls-tour-start-btn:hover {
    background: rgba(30, 64, 175, 0.15);
}

.ls-tour-start-btn svg {
    width: 14px;
    height: 14px;
}
-e 

/* ==========================================================================
   Orders List Styles (from orders-list.php)
   ========================================================================== */
/* Base - Match Dashboard exactly */
.ls-app {
    margin: -8px -20px 0 -20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Header - Exact Dashboard match */
.ls-header {
    background: linear-gradient(135deg, #1E40AF 0%, #0891b2 50%, #06B6D4 100%);
    padding: 32px 40px 60px;
    position: relative;
    overflow: hidden;
}

.ls-header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.ls-header-left { display: flex; flex-direction: column; gap: 20px; }
.ls-brand { display: flex; align-items: center; gap: 12px; }
.ls-brand-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
.ls-brand-text { font-size: 20px; font-weight: 700; color: white; letter-spacing: -0.5px; }
.ls-header-welcome h1 { font-size: 28px; font-weight: 700; color: white; margin: 0; letter-spacing: -0.5px; }
.ls-header-welcome p { color: rgba(255,255,255,0.8); font-size: 15px; margin: 6px 0 0; }

.ls-header-right { display: flex; gap: 12px; }
.ls-header-stat { text-align: right; color: white; }
.ls-header-stat-value { display: block; font-size: 28px; font-weight: 700; }
.ls-header-stat-label { display: block; font-size: 13px; opacity: 0.8; }

.ls-header-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ls-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.ls-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.ls-shape-2 { width: 250px; height: 250px; bottom: -100px; left: 10%; }
.ls-shape-3 { width: 180px; height: 180px; top: 30%; left: 25%; }

/* Content */
.ls-content { max-width: 1600px; margin: 0 auto; padding: 24px 40px 40px; position: relative; z-index: 3; }

/* Stats Grid - Like Dashboard */
.ls-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }

.ls-stat-card { background: white; border-radius: 16px; padding: 20px; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; border: 2px solid transparent; }
.ls-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.ls-stat-card.active { border-color: #1E40AF; }

.ls-stat-card-revenue { background: linear-gradient(135deg, #1E40AF, #06B6D4); }
.ls-stat-card-revenue .ls-stat-value { color: white; }
.ls-stat-card-revenue .ls-stat-label { color: rgba(255,255,255,0.8); }
.ls-stat-card-revenue .ls-stat-icon { background: rgba(255,255,255,0.2); }

.ls-stat-card-inner { display: flex; align-items: center; gap: 16px; }
.ls-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
.ls-stat-icon-all { background: linear-gradient(135deg, #1E40AF, #06B6D4); }
.ls-stat-icon-completed { background: linear-gradient(135deg, #10b981, #34d399); }
.ls-stat-icon-refunded { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
.ls-stat-icon-revenue { background: rgba(255,255,255,0.2); }

.ls-stat-data { flex: 1; }
.ls-stat-value { display: block; font-size: 28px; font-weight: 700; color: #1e293b; line-height: 1; }
.ls-stat-label { display: block; font-size: 13px; color: #64748b; margin-top: 4px; }

/* Panel */
.ls-panel { background: white; border-radius: 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); overflow: hidden; }
.ls-panel-body { padding: 0; }

/* Empty State */
.ls-empty { text-align: center; padding: 60px 40px; }
.ls-empty-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #94a3b8; }
.ls-empty h3 { font-size: 18px; color: #1e293b; margin: 0 0 8px; }
.ls-empty p { color: #64748b; margin: 0; }

/* Table */
.ls-table { width: 100%; border-collapse: collapse; }
.ls-table thead th { background: #f8fafc; padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #e2e8f0; }
.ls-table tbody td { padding: 16px 20px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.ls-table tbody tr:hover { background: #f8fafc; }
.ls-table tbody tr:last-child td { border-bottom: none; }

.ls-order-number { display: flex; align-items: center; gap: 10px; }
.ls-order-icon { width: 36px; height: 36px; background: #f1f5f9; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #64748b; }
.ls-order-number code { background: none; padding: 0; font-size: 14px; font-weight: 600; color: #1e293b; }

.ls-product-name { font-weight: 500; color: #1e293b; }
.ls-customer-email { font-size: 14px; color: #1e293b; }
.ls-amount { font-size: 16px; font-weight: 600; color: #10b981; }

.ls-badge { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.ls-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; }
.ls-badge-completed { background: #d1fae5; color: #065f46; }
.ls-badge-completed::before { background: #10b981; }
.ls-badge-pending { background: #fef3c7; color: #92400e; }
.ls-badge-pending::before { background: #f59e0b; }
.ls-badge-refunded { background: #fee2e2; color: #991b1b; }
.ls-badge-refunded::before { background: #ef4444; }
.ls-badge-failed { background: #f1f5f9; color: #64748b; }
.ls-badge-failed::before { background: #94a3b8; }

.ls-date-cell { display: flex; flex-direction: column; }
.ls-date { font-size: 14px; color: #1e293b; }
.ls-time { font-size: 12px; color: #94a3b8; }

/* Pagination */
.ls-pagination { display: flex; justify-content: center; gap: 6px; padding: 20px; border-top: 1px solid #f1f5f9; }
.ls-page-link a, .ls-page-link span { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; border-radius: 8px; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.ls-page-link a { background: #f1f5f9; color: #475569; }
.ls-page-link a:hover { background: #1E40AF; color: white; }
.ls-page-link span.current { background: #1E40AF; color: white; }

@media (max-width: 1200px) { .ls-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 782px) {
    .ls-header { padding: 24px 20px 50px; }
    .ls-header-inner { flex-direction: column; align-items: flex-start; }
    .ls-content { padding: 0 20px 20px; margin-top: -30px; }
    .ls-stats-grid { grid-template-columns: 1fr 1fr; }
    .ls-panel { overflow-x: auto; }
}
-e 

/* ==========================================================================
   Licenses List Styles (from licenses-list.php)
   ========================================================================== */
/* Base - Match Dashboard exactly */
.ls-app {
    margin: -8px -20px 0 -20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Header - Exact Dashboard match */
.ls-header {
    background: linear-gradient(135deg, #1E40AF 0%, #0891b2 50%, #06B6D4 100%);
    padding: 32px 40px 60px;
    position: relative;
    overflow: hidden;
}

.ls-header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.ls-header-left { display: flex; flex-direction: column; gap: 20px; }
.ls-brand { display: flex; align-items: center; gap: 12px; }
.ls-brand-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
.ls-brand-text { font-size: 20px; font-weight: 700; color: white; letter-spacing: -0.5px; }
.ls-header-welcome h1 { font-size: 28px; font-weight: 700; color: white; margin: 0; letter-spacing: -0.5px; }
.ls-header-welcome p { color: rgba(255,255,255,0.8); font-size: 15px; margin: 6px 0 0; }
.ls-header-right { display: flex; gap: 12px; }

.ls-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; font-size: 14px; font-weight: 600; border-radius: 10px; text-decoration: none; transition: all 0.2s; cursor: pointer; border: none; }
.ls-btn-light { background: white; color: #1E40AF; }
.ls-btn-light:hover { background: #f8fafc; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); color: #1E40AF; }
.ls-btn-secondary { background: white; color: #475569; border: 1px solid #e2e8f0; }
.ls-btn-secondary:hover { background: #f8fafc; }
.ls-btn-primary { background: linear-gradient(135deg, #1E40AF, #3b82f6); color: white; }
.ls-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,64,175,0.3); color: white; }

.ls-header-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.ls-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
.ls-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.ls-shape-2 { width: 250px; height: 250px; bottom: -100px; left: 10%; }
.ls-shape-3 { width: 180px; height: 180px; top: 30%; left: 25%; }

/* Content */
.ls-content { max-width: 1600px; margin: 0 auto; padding: 24px 40px 40px; position: relative; z-index: 3; }

/* Alert */
.ls-alert { display: flex; align-items: center; gap: 12px; padding: 16px 20px; border-radius: 12px; margin-bottom: 24px; font-size: 14px; font-weight: 500; background: white; box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.ls-alert-success { border-left: 4px solid #10b981; }
.ls-alert-success svg { color: #10b981; }

/* Stats Grid - Like Dashboard */
.ls-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 24px; }

.ls-stat-card { background: white; border-radius: 16px; padding: 20px; text-decoration: none; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: all 0.3s; border: 2px solid transparent; }
.ls-stat-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.ls-stat-card.active { border-color: #1E40AF; }

.ls-stat-card-inner { display: flex; align-items: center; gap: 16px; }
.ls-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
.ls-stat-icon-all { background: linear-gradient(135deg, #1E40AF, #06B6D4); }
.ls-stat-icon-active { background: linear-gradient(135deg, #10b981, #34d399); }
.ls-stat-icon-expired { background: linear-gradient(135deg, #ef4444, #f87171); }
.ls-stat-icon-suspended { background: linear-gradient(135deg, #f59e0b, #fbbf24); }

.ls-stat-data { flex: 1; }
.ls-stat-value { display: block; font-size: 28px; font-weight: 700; color: #1e293b; line-height: 1; }
.ls-stat-label { display: block; font-size: 13px; color: #64748b; margin-top: 4px; }

/* Panel */
.ls-panel { background: white; border-radius: 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); overflow: hidden; }
.ls-panel-header { padding: 20px 24px; border-bottom: 1px solid #f1f5f9; }
.ls-panel-body { padding: 0; }

/* Search Form */
.ls-search-form { display: flex; gap: 12px; }
.ls-search-input { flex: 1; position: relative; max-width: 400px; }
.ls-search-input svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94a3b8; }
.ls-search-input input { width: 100%; padding: 10px 14px 10px 44px; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 14px; background: #f8fafc; }
.ls-search-input input:focus { outline: none; border-color: #1E40AF; background: white; box-shadow: 0 0 0 3px rgba(30,64,175,0.1); }

/* Empty State */
.ls-empty { text-align: center; padding: 60px 40px; }
.ls-empty-icon { width: 80px; height: 80px; margin: 0 auto 20px; background: #f1f5f9; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #94a3b8; }
.ls-empty h3 { font-size: 18px; color: #1e293b; margin: 0 0 8px; }
.ls-empty p { color: #64748b; margin: 0 0 20px; }

/* Table */
.ls-table { width: 100%; border-collapse: collapse; }
.ls-table thead th { background: #f8fafc; padding: 14px 20px; text-align: left; font-size: 12px; font-weight: 600; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid #e2e8f0; }
.ls-table tbody td { padding: 16px 20px; border-bottom: 1px solid #f1f5f9; vertical-align: middle; }
.ls-table tbody tr:hover { background: #f8fafc; }
.ls-table tbody tr:last-child td { border-bottom: none; }

.ls-key-link { text-decoration: none; }
.ls-key-link code { background: #f1f5f9; padding: 6px 12px; border-radius: 6px; font-size: 13px; color: #475569; transition: all 0.2s; display: inline-block; }
.ls-key-link:hover code { background: #1E40AF; color: white; }

.ls-product-name { font-weight: 500; color: #1e293b; }
.ls-customer { display: flex; flex-direction: column; gap: 2px; }
.ls-customer-email { font-size: 14px; color: #1e293b; }
.ls-customer-name { font-size: 12px; color: #64748b; }

.ls-badge { display: inline-flex; align-items: center; padding: 5px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }
.ls-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; margin-right: 6px; }
.ls-badge-active { background: #d1fae5; color: #065f46; }
.ls-badge-active::before { background: #10b981; }
.ls-badge-expired { background: #fee2e2; color: #991b1b; }
.ls-badge-expired::before { background: #ef4444; }
.ls-badge-suspended { background: #fef3c7; color: #92400e; }
.ls-badge-suspended::before { background: #f59e0b; }

.ls-activations { display: flex; align-items: center; gap: 4px; font-size: 14px; }
.ls-activations-count { font-weight: 600; color: #1e293b; }
.ls-activations-sep { color: #cbd5e1; }
.ls-activations-limit { color: #64748b; }

.ls-date { font-size: 14px; color: #475569; }
.ls-date-expired { color: #ef4444; }
.ls-date-never { font-size: 12px; color: #10b981; font-weight: 600; background: #d1fae5; padding: 4px 10px; border-radius: 50px; }

.ls-actions { display: flex; gap: 8px; }
.ls-action-btn { width: 34px; height: 34px; border-radius: 8px; background: #f1f5f9; display: flex; align-items: center; justify-content: center; color: #64748b; transition: all 0.2s; }
.ls-action-btn:hover { background: #1E40AF; color: white; }
.ls-action-delete:hover { background: #ef4444; }

/* Pagination */
.ls-pagination { display: flex; justify-content: center; gap: 6px; padding: 20px; border-top: 1px solid #f1f5f9; }
.ls-page-link a, .ls-page-link span { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 12px; border-radius: 8px; font-size: 14px; text-decoration: none; transition: all 0.2s; }
.ls-page-link a { background: #f1f5f9; color: #475569; }
.ls-page-link a:hover { background: #1E40AF; color: white; }
.ls-page-link span.current { background: #1E40AF; color: white; }

@media (max-width: 1200px) { .ls-stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 782px) {
    .ls-header { padding: 24px 20px 50px; }
    .ls-header-inner { flex-direction: column; align-items: flex-start; }
    .ls-content { padding: 0 20px 20px; margin-top: -30px; }
    .ls-stats-grid { grid-template-columns: 1fr 1fr; }
    .ls-panel { overflow-x: auto; }
}
-e 

/* ==========================================================================
   Products List Styles (from products-list.php)
   ========================================================================== */
/* Base - Match Dashboard exactly */
.ls-app {
    margin: -8px -20px 0 -20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #f1f5f9;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

/* Header - Exact Dashboard match */
.ls-header {
    background: linear-gradient(135deg, #1E40AF 0%, #0891b2 50%, #06B6D4 100%);
    padding: 32px 40px 60px;
    position: relative;
    overflow: hidden;
}

.ls-header-inner {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    max-width: 1600px;
    margin: 0 auto;
}

.ls-header-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ls-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ls-brand-icon {
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-brand-text {
    font-size: 20px;
    font-weight: 700;
    color: white;
    letter-spacing: -0.5px;
}

.ls-header-welcome h1 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin: 0;
    letter-spacing: -0.5px;
}

.ls-header-welcome p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    margin: 6px 0 0;
}

.ls-header-right {
    display: flex;
    gap: 12px;
}

.ls-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.ls-btn-light {
    background: white;
    color: #1E40AF;
}

.ls-btn-light:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: #1E40AF;
}

.ls-btn-gradient {
    background: linear-gradient(135deg, #1E40AF, #3b82f6);
    color: white;
}

.ls-btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30,64,175,0.3);
    color: white;
}

/* Header Shapes */
.ls-header-shapes {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.ls-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
}

.ls-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
.ls-shape-2 { width: 250px; height: 250px; bottom: -100px; left: 10%; }
.ls-shape-3 { width: 180px; height: 180px; top: 30%; left: 25%; }

/* Content */
.ls-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px 40px 40px;
    position: relative;
    z-index: 3;
}

/* Alert */
.ls-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    background: white;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.ls-alert-success {
    border-left: 4px solid #10b981;
}

.ls-alert-success svg {
    color: #10b981;
}

/* Empty State */
.ls-empty-card {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}

.ls-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1E40AF;
}

.ls-empty-card h3 {
    font-size: 20px;
    color: #1e293b;
    margin: 0 0 8px;
}

.ls-empty-card p {
    color: #64748b;
    margin: 0 0 24px;
}

/* Products Grid */
.ls-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}

.ls-product-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    position: relative;
    transition: all 0.3s;
}

.ls-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.ls-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 24px 24px 0;
}

.ls-product-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, #1E40AF, #06B6D4);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.ls-product-actions {
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.2s;
}

.ls-product-card:hover .ls-product-actions {
    opacity: 1;
}

.ls-product-action {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.2s;
    text-decoration: none;
}

.ls-product-action:hover {
    background: #1E40AF;
    color: white;
}

.ls-action-delete:hover {
    background: #ef4444;
}

.ls-product-body {
    padding: 20px 24px 24px;
}

.ls-product-name {
    margin: 0 0 8px;
    font-size: 18px;
}

.ls-product-name a {
    color: #1e293b;
    text-decoration: none;
}

.ls-product-name a:hover {
    color: #1E40AF;
}

.ls-product-desc {
    color: #64748b;
    font-size: 14px;
    margin: 0 0 16px;
    line-height: 1.5;
}

.ls-product-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.ls-price-amount {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
}

.ls-price-cycle {
    font-size: 14px;
    color: #64748b;
}

.ls-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 24px;
    background: #f8fafc;
    border-top: 1px solid #f1f5f9;
}

.ls-product-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
}

.ls-product-stat svg {
    color: #94a3b8;
}

.ls-badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.ls-badge-active {
    background: #d1fae5;
    color: #065f46;
}

.ls-badge-draft {
    background: #f1f5f9;
    color: #64748b;
}

.ls-badge-inactive {
    background: #fee2e2;
    color: #991b1b;
}

/* Add New Card */
.ls-product-add {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    border: 2px dashed #cbd5e1;
    background: transparent;
    box-shadow: none;
    text-decoration: none;
    color: #64748b;
}

.ls-product-add:hover {
    border-color: #1E40AF;
    background: #eff6ff;
    color: #1E40AF;
    transform: none;
    box-shadow: none;
}

.ls-add-icon {
    width: 64px;
    height: 64px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.2s;
}

.ls-product-add:hover .ls-add-icon {
    background: #dbeafe;
}

.ls-product-add span {
    font-size: 14px;
    font-weight: 600;
}

@media (max-width: 782px) {
    .ls-header { padding: 24px 20px 50px; }
    .ls-header-inner { flex-direction: column; align-items: flex-start; }
    .ls-content { padding: 0 20px 20px; margin-top: -30px; }
    .ls-products-grid { grid-template-columns: 1fr; }
}
-e 

/* ==========================================================================
   Suggestions Page Styles
   ========================================================================== */
        /* Base */
        .ls-app {
            margin: -8px -20px 0 -20px;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #f1f5f9;
            min-height: 100vh;
            -webkit-font-smoothing: antialiased;
        }

        /* Header */
        .ls-header {
            background: linear-gradient(135deg, #1E40AF 0%, #0891b2 50%, #06B6D4 100%);
            padding: 32px 40px;
            position: relative;
            overflow: hidden;
        }

        .ls-header-inner {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            flex-wrap: wrap;
            gap: 24px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .ls-header-left { display: flex; flex-direction: column; gap: 20px; }
        .ls-brand { display: flex; align-items: center; gap: 12px; }
        .ls-brand-icon { width: 44px; height: 44px; background: rgba(255,255,255,0.15); backdrop-filter: blur(10px); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
        .ls-brand-text { font-size: 20px; font-weight: 700; color: white; letter-spacing: -0.5px; }
        .ls-header-welcome h1 { font-size: 28px; font-weight: 700; color: white; margin: 0; letter-spacing: -0.5px; }
        .ls-header-welcome p { color: rgba(255,255,255,0.8); font-size: 15px; margin: 6px 0 0; }

        .ls-header-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
        .ls-shape { position: absolute; border-radius: 50%; background: rgba(255,255,255,0.08); }
        .ls-shape-1 { width: 400px; height: 400px; top: -150px; right: -100px; }
        .ls-shape-2 { width: 250px; height: 250px; bottom: -100px; left: 10%; }
        .ls-shape-3 { width: 180px; height: 180px; top: 30%; left: 25%; }

        /* Content */
        .ls-content { max-width: 1200px; margin: 0 auto; padding: 24px 40px 40px; }

        /* Grid */
        .ls-suggestions-grid { display: grid; grid-template-columns: 1fr 360px; gap: 24px; }

        /* Panel */
        .ls-panel { background: white; border-radius: 20px; box-shadow: 0 4px 24px rgba(0,0,0,0.06); overflow: hidden; }
        .ls-panel-header { display: flex; align-items: center; gap: 16px; padding: 24px; border-bottom: 1px solid #f1f5f9; }
        .ls-panel-header-sm { padding: 20px; }
        .ls-panel-header-sm h3 { font-size: 15px; font-weight: 600; color: #1e293b; margin: 0; }
        .ls-panel-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
        .ls-panel-header-sm .ls-panel-icon { width: 40px; height: 40px; border-radius: 10px; }
        .ls-icon-idea { background: linear-gradient(135deg, #f59e0b, #fbbf24); }
        .ls-icon-fire { background: linear-gradient(135deg, #ef4444, #f97316); }
        .ls-icon-connect { background: linear-gradient(135deg, #1E40AF, #06B6D4); }
        .ls-panel-header h2 { margin: 0; font-size: 18px; color: #1e293b; }
        .ls-panel-header p { margin: 4px 0 0; font-size: 14px; color: #64748b; }
        .ls-panel-body { padding: 24px; }
        .ls-panel-body-compact { padding: 16px 20px; }

        /* Form */
        .ls-form-field { margin-bottom: 20px; }
        .ls-form-field label { display: block; font-size: 13px; font-weight: 600; color: #475569; margin-bottom: 8px; }
        .ls-form-field input,
        .ls-form-field select,
        .ls-form-field textarea { width: 100%; padding: 12px 16px; border: 1px solid #e2e8f0; border-radius: 10px; font-size: 14px; transition: all 0.2s; }
        .ls-form-field input:focus,
        .ls-form-field select:focus,
        .ls-form-field textarea:focus { outline: none; border-color: #1E40AF; box-shadow: 0 0 0 3px rgba(30,64,175,0.1); }
        .ls-form-field textarea { resize: vertical; min-height: 120px; }
        .ls-hint { font-size: 12px; color: #94a3b8; margin: 6px 0 0; }

        /* Button */
        .ls-btn-submit {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 28px;
            background: linear-gradient(135deg, #1E40AF, #3b82f6);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }
        .ls-btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,64,175,0.3); }
        .ls-btn-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }

        /* Message */
        .ls-message { display: flex; align-items: center; gap: 10px; margin-top: 20px; padding: 14px 18px; border-radius: 10px; font-size: 14px; font-weight: 500; }
        .ls-message-success { background: #d1fae5; color: #065f46; }
        .ls-message-error { background: #fee2e2; color: #991b1b; }

        /* Popular List */
        .ls-popular-list { list-style: none; margin: 0; padding: 0; }
        .ls-popular-list li { display: flex; align-items: center; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #f1f5f9; }
        .ls-popular-list li:last-child { border-bottom: none; padding-bottom: 0; }
        .ls-popular-list li:first-child { padding-top: 0; }
        .ls-popular-text { font-size: 14px; color: #1e293b; }
        .ls-popular-votes { font-size: 12px; font-weight: 700; color: #1E40AF; background: #eff6ff; padding: 4px 10px; border-radius: 50px; min-width: 32px; text-align: center; }

        /* Connect List */
        .ls-connect-list { display: flex; flex-direction: column; gap: 4px; }
        .ls-connect-item { display: flex; align-items: center; gap: 12px; padding: 12px; border-radius: 10px; text-decoration: none; transition: all 0.2s; }
        .ls-connect-item:hover { background: #f8fafc; }
        .ls-connect-icon { font-size: 20px; }
        .ls-connect-item strong { display: block; font-size: 13px; color: #1e293b; margin-bottom: 2px; }
        .ls-connect-item span { font-size: 12px; color: #64748b; }

        /* Sidebar */
        .ls-sidebar .ls-panel { margin-bottom: 20px; }
        .ls-sidebar .ls-panel:last-child { margin-bottom: 0; }

        @media (max-width: 1000px) {
            .ls-suggestions-grid { grid-template-columns: 1fr; }
        }
        @media (max-width: 782px) {
            .ls-header { padding: 24px 20px; }
            .ls-content { padding: 20px; }
        }

/* ==========================================================================
   Pro Feature Upsell Modal
   ========================================================================== */

.ls-pro-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ls-pro-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.ls-pro-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: lsModalIn 0.2s ease-out;
}

@keyframes lsModalIn {
    from { opacity: 0; transform: scale(0.95) translateY(-10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.ls-pro-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    font-size: 20px;
    color: #64748b;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ls-pro-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.ls-pro-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ls-pro-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.ls-pro-modal-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 24px;
}

.ls-pro-modal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white !important;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.ls-pro-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    color: white !important;
}

.ls-pro-modal-bonus {
    margin-top: 20px;
    padding: 12px 16px;
    background: #fefce8;
    border-radius: 10px;
    font-size: 13px;
    color: #854d0e;
}

.ls-pro-modal-bonus code {
    background: #fef08a;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.ls-bonus-badge {
    font-weight: 600;
}

.ls-pro-modal-already {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: #6366f1 !important;
    text-decoration: none !important;
}

.ls-pro-modal-already:hover {
    text-decoration: underline !important;
}

body.ls-modal-open {
    overflow: hidden;
}

/* Pro Feature Placeholder Styling */
.ls-pro-feature {
    cursor: pointer;
    position: relative;
}

.ls-pro-feature-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.ls-pro-feature-overlay {
    position: relative;
}

.ls-pro-feature-overlay::after {
    content: 'PRO';
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.ls-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    margin-left: 8px;
}

/* Grayed out tab styling */
.ls-tab.ls-pro-feature {
    opacity: 0.7;
}

.ls-tab.ls-pro-feature:hover {
    opacity: 1;
}

/* ==========================================================================
   PRO Feature Upsell Modal
   ========================================================================== */

.ls-pro-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

.ls-pro-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
}

.ls-pro-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 420px;
    width: 90%;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.ls-pro-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 20px;
    cursor: pointer;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.ls-pro-modal-close:hover {
    background: #e2e8f0;
    color: #1e293b;
}

.ls-pro-modal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef2ff, #e0e7ff);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.ls-pro-modal-title {
    font-size: 22px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 12px;
}

.ls-pro-modal-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 24px;
}

.ls-pro-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white !important;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.2s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.ls-pro-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
    color: white !important;
}

.ls-pro-modal-bonus {
    margin-top: 20px;
    padding: 12px 16px;
    background: #fefce8;
    border-radius: 10px;
    font-size: 13px;
    color: #854d0e;
}

.ls-pro-modal-bonus code {
    background: #fef08a;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 600;
}

.ls-bonus-badge {
    font-weight: 600;
}

.ls-pro-modal-already {
    display: block;
    margin-top: 16px;
    font-size: 13px;
    color: #64748b !important;
    text-decoration: none !important;
}

.ls-pro-modal-already:hover {
    color: #6366f1 !important;
}

body.ls-modal-open {
    overflow: hidden;
}

/* PRO Feature Placeholder Styling */
.ls-pro-feature {
    cursor: pointer;
    position: relative;
}

.ls-pro-feature-disabled {
    opacity: 0.6;
    pointer-events: none;
}

.ls-pro-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    margin-left: 8px;
}

.ls-tab.ls-pro-feature {
    color: #94a3b8 !important;
}

.ls-tab.ls-pro-feature:hover {
    color: #64748b !important;
    background: #f8fafc;
}

.ls-tab.ls-pro-feature .ls-pro-badge {
    font-size: 9px;
    padding: 2px 6px;
}

/* Get Pro button subtitle */
.ls-btn-upgrade {
    flex-direction: column;
    align-items: center;
    gap: 1px;
    line-height: 1.2;
}
.ls-btn-upgrade-sub {
    font-size: 9px;
    font-weight: 400;
    opacity: 0.8;
    letter-spacing: 0.2px;
}
