﻿/* ========================================
   Style2.css - Mobile-First Invitation Creator
   ======================================== */

/* Base Mobile Styles */
.naujasKvietimas2 {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Desktop Layout Wrapper */
.desktop-layout-wrapper {
    display: flex;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.mobile-container {
    max-width: 600px;
    margin: 0 auto;
    flex: 1;
}

/* Desktop Preview Panel - Hidden on Mobile/Tablet */
.desktop-preview-panel {
    display: none; /* Hidden by default on mobile */
}

/* Only show desktop preview on large screens (1200px+) */
@media (min-width: 1200px) {
    .naujasKvietimas2 {
        padding: 40px 20px;
    }

    .desktop-layout-wrapper {
        align-items: flex-start;
    }

    .mobile-container {
        flex: 0 0 600px;
        margin: 0;
        padding-top: 50px;
    }

    .desktop-preview-panel {
        display: block;
        position: sticky;
        margin-top: 60px;
        top: 100px;
        flex: 1;
        max-width: 800px; /* Increased from 700px for more horizontal aspect */
        background: white;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        overflow: hidden;
        animation: slideInRight 0.5s ease;
        /*max-height: calc(100vh - 120px);*/ /* Limit height to viewport */
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }

        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    /* Hide floating preview button on desktop */
    .floating-preview-btn {
        display: none !important;
    }
}

/* Ensure preview is hidden on tablets and below */
@media (max-width: 1199px) {
    .desktop-preview-panel {
        display: none !important;
    }

    .desktop-layout-wrapper {
        flex-direction: column;
    }

    .mobile-container {
        width: 100%;
    }
}

.desktop-preview-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.desktop-preview-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.preview-icon {
    font-size: 24px;
}

.preview-status-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.desktop-preview-content {
    padding: 20px;
    background: #f7fafc;
    min-height: 650px;
    /*max-height: calc(100vh - 220px);*/ /* Scrollable if too tall */
    overflow-y: auto; /* Enable scroll */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 5px;
}

.desktop-preview-invitation {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 100%; /* Full width of container for horizontal aspect */
    min-height: 450px; /* Base minimum height */
    aspect-ratio: auto; /* REMOVED: Let content determine height naturally */
    border-radius: 16px;
    padding: 50px 30px; /* More horizontal padding for wider look */
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    overflow: visible; /* CHANGED: Allow content to expand */
    flex-shrink: 0; /* Don't shrink */
    box-sizing: border-box;
    height: auto !important; /* Let content determine height */
}

.desktop-preview-greeting {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px; /* Match the saved format margin */
    margin-top: -10px; /* Match the saved format */
    color: #2d3748;
    word-wrap: break-word;
    line-height: 1.3; /* Tighter line height for greeting */
}

.desktop-preview-text {
    font-size: 15px;
    line-height: 1.4; /* Uniform line-height for all lines */
    margin-bottom: 20px;
    margin-top: 10px; /* Add spacing from greeting */
    color: #2d3748;
    white-space: normal; /* Changed from pre-wrap */
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Remove paragraph margins for uniform spacing */
.desktop-preview-text p {
    margin: 0;
}

.desktop-preview-signature {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    margin-top: 0px; /* Match the saved format */
    margin-bottom: 0px; /* Match the saved format */
    word-wrap: break-word;
    line-height: 1.4; /* Normal line height for signature */
}

/* Countdown outside invitation card */
.countdown-outside {
    width: 100%;
    max-width: 600px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.desktop-preview-countdown {
    /* No margin-top since we use gap in parent */
}

/* Step Progress Indicator */
.step-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
    position: relative;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: white;
    color: #667eea;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.step.completed .step-number {
    background: #4CAF50;
    color: white;
}

.step-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    font-weight: 500;
}

.step.active .step-label {
    color: white;
    font-weight: 600;
}

.step-line {
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.3);
    z-index: -1;
}

.step:last-child .step-line {
    display: none;
}

/* Mobile Cards */
.mobile-card {
    background: white;
    border-radius: 20px;
    padding: 25px 20px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-card-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    gap: 15px;
}

.card-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.card-subtitle {
    font-size: 14px;
    color: #718096;
    margin: 0;
}

/* Info Badge */
.info-badge {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-left: 4px solid #667eea;
    padding: 12px 15px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 13px;
    color: #4a5568;
}

/* Form Elements */
.form-group-mobile {
    margin-bottom: 20px;
}

.form-label-mobile {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-input-mobile,
.form-select-mobile,
.form-textarea-mobile {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #2d3748;
    font-family: inherit;
    transition: all 0.3s ease;
    background: white;
    box-sizing: border-box;
}

    .form-input-mobile:focus,
    .form-select-mobile:focus,
    .form-textarea-mobile:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

.form-textarea-mobile {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

.form-textarea-large {
    min-height: 250px;
    max-height: 400px;
}

.help-text {
    font-size: 12px;
    color: #718096;
    margin-top: 6px;
    margin-bottom: 0;
}

/* Form Controls Row */
.form-controls-row {
    display: flex;
    gap: 12px;
    align-items: flex-end;
    flex-wrap: nowrap; /* Prevent wrapping */
}

.form-control-item {
    flex: 4; /* 4 parts of the space */
    min-width: 0; /* Allow flex item to shrink below content size */
}

.form-control-small {
    flex: 1; /* 1 part of the space - creates 4:1 ratio */
    min-width: 60px; /* Minimum width to keep color picker usable */
    max-width: 80px; /* Maximum width on larger screens */
}

.form-number-mobile {
    width: 100%;
    padding: 12px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #2d3748;
    font-family: inherit;
    text-align: center;
    font-weight: 600;
}

.form-color-mobile {
    width: 100%;
    height: 48px;
    padding: 4px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    background: white;
}

    .form-color-mobile::-webkit-color-swatch-wrapper {
        padding: 0;
    }

    .form-color-mobile::-webkit-color-swatch {
        border: none;
        border-radius: 8px;
    }

/* Buttons */
.btn-mobile {
    width: 100%;
    padding: 16px 24px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
}

.btn-primary-mobile {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

    .btn-primary-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.5);
    }

    .btn-primary-mobile:active {
        transform: translateY(0);
    }

.btn-secondary-mobile {
    background: #e2e8f0;
    color: #2d3748;
}

    .btn-secondary-mobile:hover {
        background: #cbd5e0;
    }

.btn-success-mobile {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.4);
}

    .btn-success-mobile:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(72, 187, 120, 0.5);
    }

.btn-icon {
    font-size: 18px;
}

/* Background Grid */
.background-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
    gap: 12px;
    margin: 20px 0;
    max-height: 400px;
    overflow-y: auto;
    padding: 5px;
}

    /* Scrollbar styling for background grid */
    .background-grid::-webkit-scrollbar {
        width: 8px;
    }

    .background-grid::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }

    .background-grid::-webkit-scrollbar-thumb {
        background: #667eea;
        border-radius: 4px;
    }

        .background-grid::-webkit-scrollbar-thumb:hover {
            background: #5568d3;
        }

.background-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

    .background-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .background-item:hover {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    }

    .background-item.selected {
        border-color: #667eea;
        box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        transform: scale(1.05);
    }

        .background-item.selected::after {
            content: '✓';
            position: absolute;
            top: 5px;
            right: 5px;
            width: 24px;
            height: 24px;
            background: #667eea;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
        }

/* Floating Preview Button (Mobile Only) */
.floating-preview-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .floating-preview-btn:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 32px rgba(102, 126, 234, 0.5);
    }

    .floating-preview-btn:active {
        transform: scale(0.95);
    }

/* Preview Modal */
.preview-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000; /* Increased from 2000 to be above navigation (9999) */
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .preview-modal.active {
        display: flex;
        flex-direction: column;
        opacity: 1;
    }

.preview-header {
    background: white;
    padding: 8px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 10001; /* Ensure header is above modal background */
    position: relative;
    flex-shrink: 0; /* Don't shrink header */
}

.preview-title {
    margin: 0;
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
}

.preview-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e2e8f0;
    border: none;
    font-size: 24px;
    color: #2d3748;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .preview-close:hover {
        background: #cbd5e0;
        transform: rotate(90deg);
    }

.preview-content {
    flex: 1;
    overflow-y: auto;
    padding: 10px 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start; /* Changed from center to flex-start */
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
}

    /* Add scrollbar styling for preview content on mobile */
    .preview-content::-webkit-scrollbar {
        width: 8px;
    }

    .preview-content::-webkit-scrollbar-track {
        background: rgba(255, 255, 255, 0.1);
        border-radius: 4px;
    }

    .preview-content::-webkit-scrollbar-thumb {
        background: rgba(255, 255, 255, 0.3);
        border-radius: 4px;
    }

        .preview-content::-webkit-scrollbar-thumb:hover {
            background: rgba(255, 255, 255, 0.5);
        }

.preview-invitation {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    max-width: 600px;
    min-height: 500px;
    height: auto !important; /* Allow natural height based on content */
    border-radius: 20px;
    padding: 60px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px; /* Space for countdown */
    flex-shrink: 0; /* Don't shrink the card */
    overflow: visible; /* Allow content to expand naturally */
}

.preview-greeting {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2d3748;
}

.preview-text {
    font-size: 15px;
    line-height: 1.4; /* Uniform line-height for all lines */
    margin-bottom: 20px;
    color: #2d3748;
    white-space: normal; /* Changed from pre-wrap */
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

/* Remove paragraph margins for uniform spacing */
.preview-text p {
    margin: 0;
}

.preview-signature {
    font-size: 18px;
    font-weight: 500;
    color: #2d3748;
    margin-top: 10px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.preview-countdown {
    margin-top: 0; /* Removed margin since parent has margin-bottom */
    width: 100%;
    max-width: 600px;
    flex-shrink: 0; /* Don't shrink countdown */
}

/* Countdown Display */
.countdown-display {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, #667eea15, #764ba215);
    border-radius: 12px;
    padding: 15px 20px;
    min-width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-value {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    display: block;
}

.countdown-label {
    font-size: 12px;
    color: #718096;
    margin-top: 4px;
    font-weight: 600;
}

@media (max-width: 480px) {

    .countdown-display {
        gap: 5px;
    }

    .countdown-item {
        padding: 10px 5px;
    }

    .countdown-value {
        font-size: 22px;
    }

    .countdown-label {
        font-size: 11px;
    }
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10003; /* Increased from 3000 to be above all other modals */
}

    .loading-overlay.active {
        display: flex;
    }

.loading-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
    .step-label {
        font-size: 10px;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .card-title {
        font-size: 20px;
    }

    .mobile-card {
        padding: 20px 15px;
    }

    .background-grid {
        grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
        gap: 8px;
        max-height: 300px;
    }

    .floating-preview-btn {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
}

@media (min-width: 768px) {
    .mobile-container {
        max-width: 700px;
    }

    .mobile-card {
        padding: 35px 30px;
    }

    .background-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
        max-height: 500px;
    }
}

/* Print Styles */
@media print {
    .step-progress,
    .floating-preview-btn,
    .btn-mobile {
        display: none !important;
    }

    .mobile-card {
        box-shadow: none;
        border: 1px solid #e2e8f0;
    }
}

/* =============================
   Advanced Styles - High DPI
   ============================= */

/* Ensure invitation auto-stretch works on high DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .preview-invitation,
    .desktop-preview-invitation {
        min-height: 450px !important; /* Base minimum */
        height: auto !important; /* Allow stretching based on content */
        width: 100% !important; /* Full width */
        max-width: 100% !important; /* Don't overflow */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px 30px; /* Wider horizontal padding */
        overflow: visible !important; /* Allow content to expand naturally */
        box-sizing: border-box !important; /* Include padding */
        aspect-ratio: auto; /* Let content determine dimensions */
        flex-shrink: 0 !important; /* Don't shrink */
    }

    .preview-greeting,
    .preview-text,
    .preview-signature,
    .desktop-preview-greeting,
    .desktop-preview-text,
    .desktop-preview-signature {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: normal; /* Changed from break-word to normal for better text flow */
        max-width: 100%;
        width: 100%;
        overflow: visible; /* Show all content */
        box-sizing: border-box;
    }

    /* Ensure text matches saved format line-height */
    .preview-text,
    .desktop-preview-text {
        max-width: 100%;
        max-height: none !important; /* Remove height restriction - allow full expansion */
        overflow-wrap: break-word;
        word-break: normal; /* Better text flow */
        overflow: visible; /* Show all content */
        white-space: normal; /* Normal text wrapping */
        line-height: 1.4 !important; /* Uniform line-height for all lines */
    }

        /* Ensure Quill formatted content stays within bounds but can expand */
        .preview-text p,
        .preview-text span,
        .preview-text div,
        .desktop-preview-text p,
        .desktop-preview-text span,
        .desktop-preview-text div {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: normal !important; /* Better text flow */
            max-width: 100% !important;
            line-height: 1.4 !important; /* Uniform line-height */
        }

        /* Remove all paragraph margins for uniform spacing */
        .preview-text p,
        .desktop-preview-text p {
            margin: 0 !important;
        }

    /* kvietimasR auto-stretch for actual invitations - match saved format */
    .kvietimasR {
        min-height: 450px !important; /* More horizontal */
        height: auto !important; /* Allow stretching */
        width: 100% !important; /* Full width */
        max-width: 100% !important; /* Don't overflow */
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 50px 60px; /* Match preview padding */
        overflow: visible !important; /* Allow content expansion */
        box-sizing: border-box !important;
        aspect-ratio: auto; /* Let content determine dimensions */
        flex-shrink: 0 !important; /* Don't shrink */
    }

    #kvietimoTekstasR {
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: normal; /* Better text flow */
        max-width: 100%;
        width: 100%;
        max-height: none !important; /* Allow full expansion */
        overflow: visible !important; /* Show all content */
        white-space: normal; /* Normal wrapping */
        box-sizing: border-box;
        line-height: 1.6; /* Match standard paragraph line-height */
    }

        /* Ensure all child elements respect boundaries */
        #kvietimoTekstasR p,
        #kvietimoTekstasR span,
        #kvietimoTekstasR div {
            word-wrap: break-word !important;
            overflow-wrap: break-word !important;
            word-break: normal !important;
            max-width: 100% !important;
            line-height: inherit !important;
        }

    /* Mobile preview adjustments to match */
    .preview-invitation {
        aspect-ratio: auto; /* Let content determine height */
        min-height: 400px;
        padding: 40px 50px; /* More horizontal padding */
        height: auto !important; /* Allow stretching */
        overflow: visible !important; /* Allow content expansion */
        flex-shrink: 0 !important; /* Don't shrink */
    }
}

/* Add scrollbar styling for preview content */
.desktop-preview-content::-webkit-scrollbar {
    width: 10px;
}

.desktop-preview-content::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 5px;
}

.desktop-preview-content::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 5px;
}

    .desktop-preview-content::-webkit-scrollbar-thumb:hover {
        background: #5568d3;
    }
