/**
 * Easily Post from GPT - Premium Admin Styles
 * Making free plugins feel like premium magic ✨
 */

/* ==========================================================================
   Color Variables & Base - EasilyGPT Brand Colors
   ========================================================================== */
:root {
    --egpt-primary: #00baf3;
    --egpt-primary-dark: #3384b5;
    --egpt-primary-light: #4dd4ff;
    --egpt-success: #10b981;
    --egpt-warning: #f59e0b;
    --egpt-danger: #ef4444;
    --egpt-navy: #0b1b40;
    --egpt-navy-light: #1a2c54;
    --egpt-charcoal: #12171f;
    --egpt-gray-50: #f9fafb;
    --egpt-gray-100: #f3f4f6;
    --egpt-gray-200: #e5e7eb;
    --egpt-gray-300: #d1d5db;
    --egpt-gray-500: #6b7280;
    --egpt-gray-700: #374151;
    --egpt-gray-800: #1f2937;
    --egpt-gray-900: #0b1b40;
    --egpt-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --egpt-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --egpt-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --egpt-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --egpt-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* ==========================================================================
   Main Wrapper & Container
   ========================================================================== */
.egpt-admin-wrap {
    max-width: 1200px;
    margin: 20px auto 40px;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* ==========================================================================
   Header Section - EasilyGPT Branded
   ========================================================================== */
.egpt-header {
    background: linear-gradient(135deg, var(--egpt-navy) 0%, var(--egpt-navy-light) 100%);
    margin: 10px 0px 8px 0px;
    padding: 16px 24px;
    border-radius: 10px;
    box-shadow: var(--egpt-shadow-md);
    position: relative;
    overflow: hidden;
}

.egpt-header::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 186, 243, 0.1) 100%);
    pointer-events: none;
}

.egpt-header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.egpt-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.egpt-header-logo {
    height: 36px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.egpt-header-logo img {
    height: 100%;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.egpt-header-text {
    display: flex;
    align-items: baseline;
    gap: 0;
    color: white;
    font-size: 16px;
    line-height: 1.4;
}

.egpt-header-title {
    font-weight: 700;
    color: white;
}

.egpt-header-subtitle {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-left: 4px;
}

.egpt-version-badge {
    display: inline-block;
    background: rgba(0, 186, 243, 0.2);
    border: 1px solid var(--egpt-primary);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--egpt-primary-light);
    letter-spacing: 0.3px;
    box-shadow: 0 0 20px rgba(0, 186, 243, 0.3);
    flex-shrink: 0;
}

/* ==========================================================================
   Card System
   ========================================================================== */
.egpt-card {
    background: white;
    border-radius: 12px;
    box-shadow: var(--egpt-shadow);
    padding: 24px 28px;
    margin-bottom: 20px;
    border: 1px solid var(--egpt-gray-200);
    transition: all 0.3s ease;
}

.egpt-card:hover {
    box-shadow: var(--egpt-shadow-md);
    transform: translateY(-1px);
}

.egpt-card-header {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--egpt-gray-100);
}

.egpt-card-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--egpt-gray-900);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.3px;
}

.egpt-card-title::before {
    content: '';
    width: 4px;
    height: 22px;
    background: linear-gradient(180deg, var(--egpt-primary), var(--egpt-primary-light));
    border-radius: 2px;
}

.egpt-card-description {
    font-size: 14px;
    color: var(--egpt-gray-500);
    margin: 0;
    line-height: 1.5;
}

/* ==========================================================================
   Form Elements
   ========================================================================== */
.egpt-form-group {
    margin-bottom: 24px;
}

.egpt-form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--egpt-gray-700);
    margin-bottom: 8px;
    letter-spacing: 0.1px;
}

.egpt-form-label .required {
    color: var(--egpt-danger);
    margin-left: 4px;
}

.egpt-form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 2px solid var(--egpt-gray-200);
    border-radius: 8px;
    transition: all 0.2s ease;
    background: var(--egpt-gray-50);
    font-family: inherit;
}

.egpt-form-input:focus {
    outline: none;
    border-color: var(--egpt-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.08);
}

.egpt-form-input[readonly] {
    background: var(--egpt-gray-100);
    cursor: not-allowed;
    color: var(--egpt-gray-500);
}

.egpt-form-input-group {
    display: flex;
    gap: 12px;
    align-items: stretch;
}

.egpt-form-input-group .egpt-form-input {
    flex: 1;
}

.egpt-form-help {
    font-size: 13px;
    color: var(--egpt-gray-500);
    margin-top: 8px;
    line-height: 1.5;
}

.egpt-form-help strong {
    color: var(--egpt-gray-700);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.egpt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    font-family: inherit;
    box-shadow: var(--egpt-shadow-sm);
    letter-spacing: 0.1px;
}

.egpt-btn:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15);
}

.egpt-btn-primary {
    background: linear-gradient(135deg, var(--egpt-primary), var(--egpt-primary-dark));
    color: white;
}

.egpt-btn-primary:hover {
    background: linear-gradient(135deg, var(--egpt-primary-dark), #3730a3);
    transform: translateY(-1px);
    box-shadow: var(--egpt-shadow-md);
}

.egpt-btn-secondary {
    background: white;
    color: var(--egpt-gray-700);
    border: 2px solid var(--egpt-gray-300);
}

.egpt-btn-secondary:hover {
    background: var(--egpt-gray-50);
    border-color: var(--egpt-gray-400);
    transform: translateY(-1px);
}

.egpt-btn-success {
    background: linear-gradient(135deg, var(--egpt-success), #059669);
    color: white;
}

.egpt-btn-success:hover {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-1px);
    box-shadow: var(--egpt-shadow-md);
}

.egpt-btn-icon::before {
    font-size: 18px;
}

.egpt-btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.egpt-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

/* ==========================================================================
   Code Block & Copy Feature
   ========================================================================== */
.egpt-code-block {
    background: var(--egpt-gray-900);
    color: #10b981;
    padding: 20px;
    border-radius: 10px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.8;
    margin: 16px 0;
    position: relative;
    border: 1px solid var(--egpt-gray-700);
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.3);
}

.egpt-code-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 30px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.1), transparent);
    border-radius: 10px 10px 0 0;
}

.egpt-code-line {
    position: relative;
    padding-left: 10px;
}

.egpt-copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 2;
}

.egpt-copy-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.egpt-copy-btn.copied {
    background: var(--egpt-success);
    border-color: var(--egpt-success);
}

/* ==========================================================================
   Step-by-Step Guide
   ========================================================================== */
.egpt-steps {
    margin: 20px 0;
}

.egpt-step {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
    padding: 20px;
    background: var(--egpt-gray-50);
    border-radius: 10px;
    border-left: 4px solid var(--egpt-primary);
    transition: all 0.3s ease;
}

.egpt-step:hover {
    background: white;
    box-shadow: var(--egpt-shadow);
}

.egpt-step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--egpt-primary), var(--egpt-primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--egpt-shadow-md);
}

.egpt-step-content {
    flex: 1;
    padding-top: 2px;
}

.egpt-step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--egpt-gray-900);
    margin: 0 0 8px 0;
    letter-spacing: -0.2px;
}

.egpt-step-description {
    font-size: 14px;
    color: var(--egpt-gray-600);
    margin: 0;
    line-height: 1.6;
}

/* ==========================================================================
   Alert/Notice Boxes
   ========================================================================== */
.egpt-alert {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 4px solid;
    line-height: 1.5;
}

.egpt-alert-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.egpt-alert-content {
    flex: 1;
    font-size: 14px;
}

.egpt-alert-info {
    background: #eff6ff;
    border-color: #3b82f6;
    color: #1e40af;
}

.egpt-alert-success {
    background: #f0fdf4;
    border-color: var(--egpt-success);
    color: #166534;
}

.egpt-alert-warning {
    background: #fffbeb;
    border-color: var(--egpt-warning);
    color: #92400e;
}

.egpt-alert-danger {
    background: #fef2f2;
    border-color: var(--egpt-danger);
    color: #991b1b;
}

/* ==========================================================================
   Two Column Layout
   ========================================================================== */
.egpt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}

@media (max-width: 768px) {
    .egpt-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   Extensions Page - Horizontal Layout
   ========================================================================== */
.egpt-extensions-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 48px;
}

.egpt-extension-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--egpt-shadow);
    transition: all 0.3s ease;
    border: 2px solid var(--egpt-gray-200);
    display: flex;
    flex-direction: row;
}

.egpt-extension-card:hover {
    box-shadow: var(--egpt-shadow-lg);
    transform: translateY(-2px);
    border-color: var(--egpt-primary);
}

.egpt-extension-thumbnail {
    width: 180px;
    min-width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--egpt-gray-50), var(--egpt-gray-100));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.egpt-extension-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.egpt-extension-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.egpt-extension-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--egpt-gray-900);
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.egpt-extension-description {
    font-size: 14px;
    color: var(--egpt-gray-600);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.egpt-extension-footer {
    padding: 16px 24px;
    background: var(--egpt-gray-50);
    border-top: 1px solid var(--egpt-gray-200);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.egpt-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(135deg, var(--egpt-success), #059669);
    color: white;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.egpt-badge::before {
    content: '✓';
    font-size: 14px;
    font-weight: 700;
}

/* ==========================================================================
   Divider
   ========================================================================== */
.egpt-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--egpt-gray-300), transparent);
    margin: 32px 0;
}

/* ==========================================================================
   Loading State
   ========================================================================== */
.egpt-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

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

/* ==========================================================================
   Feature List
   ========================================================================== */
.egpt-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.egpt-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 13px;
    color: var(--egpt-gray-600);
    line-height: 1.5;
}

.egpt-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-size: 14px;
    color: var(--egpt-primary);
    font-weight: 700;
}

/* ==========================================================================
   Subtle Support Footer
   ========================================================================== */
.egpt-support-footer {
    margin-top: 32px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--egpt-gray-50) 0%, white 100%);
    border-top: 1px solid var(--egpt-gray-200);
    border-radius: 10px;
    text-align: center;
}

.egpt-support-footer p {
    margin: 0;
    color: var(--egpt-gray-600);
    font-size: 13px;
    line-height: 1.5;
}

.egpt-support-link {
    color: var(--egpt-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

.egpt-support-link:hover {
    color: var(--egpt-primary-dark);
    border-bottom-color: var(--egpt-primary-dark);
}

/* ==========================================================================
   Stats Dashboard
   ========================================================================== */
.egpt-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.egpt-stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: var(--egpt-shadow);
    border-left: 4px solid var(--egpt-primary);
    transition: all 0.3s ease;
}

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

.egpt-stat-label {
    font-size: 13px;
    color: var(--egpt-gray-500);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.egpt-stat-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--egpt-gray-900);
    margin: 0;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */
@media (max-width: 768px) {
    .egpt-admin-wrap {
        padding: 0 16px;
        margin: 16px auto 32px;
    }

    .egpt-header {
        padding: 14px 16px;
        margin: -20px -16px 24px -16px;
    }

    .egpt-header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .egpt-header-left {
        gap: 10px;
        width: 100%;
    }

    .egpt-header-logo {
        height: 30px;
    }

    .egpt-header-text {
        font-size: 14px;
        flex-wrap: wrap;
    }

    .egpt-header-title {
        font-size: 14px;
    }

    .egpt-header-subtitle {
        font-size: 14px;
    }

    .egpt-version-badge {
        font-size: 10px;
        padding: 3px 8px;
    }

    .egpt-card {
        padding: 20px 16px;
    }

    .egpt-card-title {
        font-size: 17px;
    }

    .egpt-form-input-group {
        flex-direction: column;
        gap: 10px;
    }

    .egpt-extensions-grid {
        gap: 16px;
    }

    .egpt-extension-card {
        flex-direction: column;
    }

    .egpt-extension-thumbnail {
        width: 100%;
        min-width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        padding: 16px;
    }

    .egpt-extension-body {
        padding: 16px;
    }

    .egpt-extension-footer {
        padding: 12px 16px;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .egpt-step {
        padding: 16px;
        gap: 14px;
    }

    .egpt-step-number {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }

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

/* ==========================================================================
   WordPress Admin Overrides
   ========================================================================== */
.toplevel_page_gpt2wp-dashboard .wp-heading-inline,
.gpt2wp-dashboard_page_gpt2wp-configuration .wp-heading-inline,
.gpt2wp-dashboard_page_gpt2wp-quick-start .wp-heading-inline,
.gpt2wp-dashboard_page_gpt2wp-advanced-settings .wp-heading-inline,
.gpt2wp-dashboard_page_gpt2wp-extensions .wp-heading-inline {
    display: none;
}

.toplevel_page_gpt2wp-dashboard #wpbody-content > .wrap > h2:first-child,
.gpt2wp-dashboard_page_gpt2wp-configuration #wpbody-content > .wrap > h2:first-child,
.gpt2wp-dashboard_page_gpt2wp-quick-start #wpbody-content > .wrap > h2:first-child,
.gpt2wp-dashboard_page_gpt2wp-advanced-settings #wpbody-content > .wrap > h2:first-child,
.gpt2wp-dashboard_page_gpt2wp-extensions #wpbody-content > .wrap > h2:first-child {
    display: none;
}

/* Hide WordPress default notices on our pages */
.egpt-admin-wrap ~ .notice,
.egpt-admin-wrap ~ .updated,
.egpt-admin-wrap ~ .error {
    max-width: 1400px;
    margin: 20px auto;
}

/* ==========================================================================
   Dashboard - Progress Bar
   ========================================================================== */
.egpt-progress-bar-container {
    margin: 20px 0;
}

.egpt-progress-bar {
    width: 100%;
    height: 10px;
    background: var(--egpt-gray-200);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.egpt-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--egpt-primary), var(--egpt-primary-light));
    border-radius: 20px;
    transition: width 0.6s ease;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
}

.egpt-progress-text {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--egpt-gray-700);
}

/* ==========================================================================
   Dashboard - Setup Checklist
   ========================================================================== */
.egpt-setup-checklist {
    margin: 20px 0;
}

.egpt-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: var(--egpt-gray-50);
    border-radius: 10px;
    margin-bottom: 12px;
    border-left: 4px solid var(--egpt-gray-300);
    transition: all 0.3s ease;
}

.egpt-checklist-item.completed {
    background: #f0fdf4;
    border-left-color: var(--egpt-success);
}

.egpt-checklist-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--egpt-gray-300);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--egpt-gray-400);
    transition: all 0.3s ease;
}

.egpt-checklist-item.completed .egpt-checklist-icon {
    background: var(--egpt-success);
    border-color: var(--egpt-success);
    color: white;
}

.egpt-checklist-content {
    flex: 1;
}

.egpt-checklist-content h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--egpt-gray-900);
}

.egpt-checklist-content p {
    margin: 0;
    font-size: 13px;
    color: var(--egpt-gray-600);
    line-height: 1.5;
}

/* ==========================================================================
   Dashboard - Quick Actions Grid
   ========================================================================== */
.egpt-quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.egpt-action-card {
    padding: 28px 20px;
    background: linear-gradient(135deg, var(--egpt-gray-50) 0%, white 100%);
    border: 2px solid var(--egpt-gray-200);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: var(--egpt-shadow-sm);
}

.egpt-action-card:hover {
    border-color: var(--egpt-primary);
    background: white;
    box-shadow: var(--egpt-shadow-lg);
    transform: translateY(-6px);
}

.egpt-action-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
    line-height: 1;
}

.egpt-action-card h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--egpt-gray-900);
    letter-spacing: -0.2px;
}

.egpt-action-card p {
    margin: 0;
    font-size: 14px;
    color: var(--egpt-gray-600);
    line-height: 1.5;
}

/* ==========================================================================
   Onboarding Modal
   ========================================================================== */
.egpt-onboarding-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(17, 24, 39, 0.75);
    backdrop-filter: blur(4px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.egpt-onboarding-modal {
    background: white;
    border-radius: 16px;
    box-shadow: var(--egpt-shadow-xl);
    max-width: 600px;
    width: 100%;
    padding: 48px;
    position: relative;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.egpt-onboarding-content {
    min-height: 300px;
}

.egpt-onboarding-step {
    text-align: center;
}

.egpt-onboarding-icon {
    font-size: 64px;
    margin-bottom: 24px;
}

.egpt-onboarding-step h2 {
    margin: 0 0 16px 0;
    font-size: 28px;
    font-weight: 700;
    color: var(--egpt-gray-900);
}

.egpt-onboarding-step p {
    margin: 0 0 24px 0;
    font-size: 16px;
    color: var(--egpt-gray-600);
    line-height: 1.7;
}

.egpt-onboarding-list {
    text-align: center;
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.egpt-onboarding-list li {
    padding: 12px 0;
    font-size: 16px;
    color: var(--egpt-gray-700);
    line-height: 1.7;
}

.egpt-onboarding-list ol {
    padding-left: 24px;
}

.egpt-onboarding-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 32px;
}

.egpt-onboarding-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 32px;
}

.egpt-onboarding-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--egpt-gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.egpt-onboarding-dots .dot.active {
    background: var(--egpt-primary);
    width: 30px;
    border-radius: 5px;
}

/* ==========================================================================
   Mobile Responsive for New Components
   ========================================================================== */
@media (max-width: 768px) {
    .egpt-quick-actions {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .egpt-action-card {
        padding: 24px 16px;
    }

    .egpt-action-icon {
        font-size: 42px;
        margin-bottom: 12px;
    }

    .egpt-onboarding-modal {
        padding: 24px 20px;
    }

    .egpt-onboarding-icon {
        font-size: 48px;
    }

    .egpt-onboarding-step h2 {
        font-size: 22px;
    }

    .egpt-onboarding-actions {
        flex-direction: column;
    }

    .egpt-checklist-item {
        padding: 14px;
        gap: 12px;
    }

    .egpt-checklist-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }

    .egpt-checklist-content h4 {
        font-size: 15px;
    }

    .egpt-checklist-content p {
        font-size: 12px;
    }
}
