 :root {
            --primary-color: #2a89e3;
            --secondary-color: #4CAF50;
            --accent-color: #FF9800;
            --dark-color: #333333;
            --light-color: #ffffff;
            --gray-color: #f5f5f5;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            color: #333;
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        
        .header {
            background-color: var(--primary-color);
            color: white;
            padding: 15px 20px;
            border-radius: 8px 8px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .toolbar {
            display: flex;
            background-color: #f1f1f1;
            padding: 10px;
            border-bottom: 1px solid #ddd;
            flex-wrap: wrap;
        }
        
        .toolbar-group {
            display: flex;
            margin-right: 15px;
            align-items: center;
        }
        
        .toolbar button, .toolbar select {
            margin-right: 8px;
            padding: 8px 12px;
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            display: flex;
            align-items: center;
            white-space: nowrap;
        }
        
        .toolbar button:hover {
            background-color: #f0f0f0;
        }
        
        .toolbar button i {
            margin-right: 5px;
        }
        .export{
            float:right;
            margin-left: auto;
            margin-right: 0px;
            position:relative;
            display: inline-flex;
            color: #fff !important;
        }
        .workspace {
            display: flex;
            min-height: 80vh;
        }
        
        .elements-panel {
            width: 250px;
            background-color: white;
            border-right: 1px solid #ddd;
            padding: 15px;
            overflow-y: auto;
        }
        
        .element-category {
            margin-bottom: 20px;
        }
        
        .element-category h3 {
            margin-top: 0;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            text-transform: uppercase;
            color: #666;
        }
        
        .element-item {
            background-color: var(--gray-color);
            padding: 10px;
            margin-bottom: 8px;
            border-radius: 4px;
            cursor: grab;
            font-size: 13px;
            display: flex;
            align-items: center;
        }
        
        .element-item i {
            margin-right: 8px;
            color: #666;
        }
        
        .element-item:hover {
            background-color: #e0e0e0;
        }
        
        .email-canvas {
            flex-grow: 1;
            background-color: #f9f9f9;
            padding: 20px;
            overflow-y: auto;
            position: relative;
        }
        
        .email-container {
            width: 600px;
            margin: 0 auto;
            background-color: white;
            box-shadow: 0 0 15px rgba(0,0,0,0.1);
            min-height: 800px;
            position: relative;
        }
        
        .properties-panel {
            width: 300px;
            background-color: white;
            border-left: 1px solid #ddd;
            padding: 15px;
            overflow-y: auto;
        }
        
        .property-group {
            margin-bottom: 20px;
        }
        
        .property-group h3 {
            margin-top: 0;
            padding-bottom: 5px;
            border-bottom: 1px solid #eee;
            font-size: 14px;
            text-transform: uppercase;
            color: #666;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-size: 13px;
            color: #555;
        }
        
        .form-group input, .form-group select, .form-group textarea {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 13px;
        }
        
        .form-group textarea {
            min-height: 80px;
        }
        
        .color-picker {
            display: flex;
            align-items: center;
        }
        
        .color-picker input[type="color"] {
            width: 30px;
            height: 30px;
            margin-left: 10px;
            padding: 0;
            border: 1px solid #ddd;
        }
        
        .btn {
            padding: 8px 15px;
            background-color: var(--primary-color);
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
        }
        
        .btn:hover {
            opacity: 0.9;
        }
        
        .btn-secondary {
            background-color: #666;
        }
        
        /* Email element styles */
        .email-element {
            position: relative;
            border: 1px dashed transparent;
            margin-bottom: 15px;
        }
        
        .email-element:hover {
            border-color: var(--primary-color);
        }
        
        .email-element.selected {
            border: 1px dashed var(--primary-color);
            background-color: rgba(42, 137, 227, 0.05);
        }
        
        .element-toolbar {
            position: absolute;
            top: -15px;
            right: 5px;
            background-color: var(--primary-color);
            border-radius: 4px;
            display: none;
            z-index: 10;
        }
        
        .email-element:hover .element-toolbar, 
        .email-element.selected .element-toolbar {
            display: flex;
        }
        
        .element-toolbar button {
            background: none;
            border: none;
            color: white;
            padding: 3px 5px;
            cursor: pointer;
            font-size: 12px;
        }
        
        .element-toolbar button:hover {
            background-color: rgba(255,255,255,0.2);
        }
        
        /* Predefined email elements */
        .email-header {
            padding: 20px;
            text-align: center;
            background-color: var(--primary-color);
            color: white;
        }
        
        .email-text {
            padding: 15px;
            line-height: 1.6;
        }
        
        .email-image {
            width: 100%;
            text-align: center;
        }
        
        .email-image img {
            max-width: 100%;
            height: auto;
        }
        
        .email-button {
            padding: 15px;
            text-align: center;
        }
        
        .email-button a {
            display: inline-block;
            padding: 12px 25px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-weight: bold;
        }
        
        .email-footer {
            padding: 15px;
            text-align: center;
            font-size: 12px;
            color: #666;
            background-color: var(--gray-color);
        }
        
        .email-divider {
            border-top: 1px solid #eee;
            margin: 15px 0;
        }
        
        /* E-commerce elements */
        .product-card {
            border: 1px solid #eee;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .product-image {
            width: 100%;
            height: 180px;
            background-color: #f9f9f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ccc;
        }
        
        .product-details {
            padding: 15px;
        }
        
        .product-title {
            font-weight: bold;
            margin-bottom: 5px;
        }
        
        .product-price {
            color: var(--primary-color);
            font-weight: bold;
            margin-bottom: 10px;
        }
        
        .product-button {
            display: inline-block;
            padding: 8px 15px;
            background-color: var(--primary-color);
            color: white;
            text-decoration: none;
            border-radius: 4px;
            font-size: 13px;
        }
        
        .products-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            padding: 15px;
        }
        
        /* Price table */
        .price-table {
            width: 100%;
            border-collapse: collapse;
            margin: 15px 0;
        }
        
        .price-table th, .price-table td {
            padding: 12px 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        .price-table th {
            background-color: var(--primary-color);
            color: white;
        }
        
        .price-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }
        
        .price-table .price {
            color: var(--primary-color);
            font-weight: bold;
        }
        
        /* Testimonial */
        .testimonial {
            background-color: #f9f9f9;
            border-left: 4px solid var(--primary-color);
            padding: 20px;
            margin: 15px;
            font-style: italic;
        }
        
        .testimonial-author {
            margin-top: 10px;
            font-weight: bold;
            font-style: normal;
        }
         /* Additional Banner Styles */
        .banner-cta {
            background: linear-gradient(135deg, var(--primary-color), #1e88e5);
            color: white;
            padding: 30px;
            text-align: center;
            border-radius: 8px;
            margin: 15px 0;
        }
        
        .banner-alert {
            background-color: #fff3e0;
            border-left: 4px solid #ff9800;
            padding: 20px;
            margin: 15px 0;
        }
        
        .banner-success {
            background-color: #e8f5e9;
            border-left: 4px solid #4caf50;
            padding: 20px;
            margin: 15px 0;
        }
        /* App download buttons */
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            flex-wrap: wrap;
        }
        
        .download-btn {
            display: flex;
            align-items: center;
            background-color: #000;
            color: white;
            padding: 8px 12px;
            border-radius: 5px;
            text-decoration: none;
            font-size: 12px;
        }
        
        .download-btn.play-store {
            background-color: #3cba54;
        }
        
        .download-btn.app-store {
            background-color: #000;
        }
        
        .download-text {
            display: flex;
            flex-direction: column;
        }
        
        .download-text span:first-child {
            font-size: 10px;
        }
        
        .download-text span:last-child {
            font-weight: bold;
        }
        
        /* SVG designs */
        .svg-container {
            text-align: center;
            padding: 20px;
        }
        
        .svg-design {
            width: 80%;
            height: auto;
            margin: 0 auto;
        }
        
        /* Social icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 15px;
            padding: 15px;
            flex-wrap: wrap;
        }
        
        .social-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 16px;
            text-decoration: none;
        }
        
        /* Share buttons */
        .share-buttons {
            display: flex;
            justify-content: center;
            gap: 10px;
            padding: 15px;
            flex-wrap: wrap;
        }
        
        .share-button {
            display: inline-flex;
            align-items: center;
            padding: 8px 15px;
            background-color: #f0f0f0;
            color: #333;
            text-decoration: none;
            border-radius: 4px;
            font-size: 13px;
        }
        
        .share-button i {
            margin-right: 8px;
        }
        
        /* Video container */
        .video-container {
            position: relative;
            padding-bottom: 56.25%;
            height: 0;
            overflow: hidden;
            margin: 15px 0;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        /* OTP banner */
        .otp-banner {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            padding: 20px;
            text-align: center;
            margin: 15px;
        }
        
        .otp-code {
            font-size: 24px;
            font-weight: bold;
            letter-spacing: 5px;
            color: var(--primary-color);
            margin: 15px 0;
            padding: 10px;
            background-color: white;
            border: 2px dashed #ccc;
            border-radius: 5px;
            display: inline-block;
        }
        
        /* Banner styles */
        .banner {
            padding: 30px;
            text-align: center;
            margin: 15px 0;
            border-radius: 8px;
        }
        
        .banner-primary {
            background-color: var(--primary-color);
            color: white;
        }
        
        .banner-secondary {
            background-color: var(--secondary-color);
            color: white;
        }
        
        .banner-accent {
            background-color: var(--accent-color);
            color: white;
        }
        
        .banner-light {
            background-color: #f9f9f9;
            color: #333;
            border: 1px solid #eee;
        }
        
        .banner-dark {
            background-color: #333;
            color: white;
        }
        
        .banner-gradient {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .download-buttons, .share-buttons, .social-icons {
                flex-direction: column;
                align-items: center;
            }
            
            .email-container {
                width: 100%;
            }
            
            .price-table {
                display: block;
                overflow-x: auto;
            }
        }
        
        @media (max-width: 1200px) {
            .workspace {
                flex-direction: column;
            }
            
            .elements-panel, .properties-panel {
                width: 100%;
                border: none;
                border-bottom: 1px solid #ddd;
            }
            
            .email-canvas {
                order: -1;
            }
        }
        
        /* Drag and drop styles */
        .dragging {
            opacity: 0.5;
        }
        
        .drop-zone {
            border: 2px dashed var(--primary-color);
            background-color: rgba(42, 137, 227, 0.1);
            min-height: 50px;
            margin-bottom: 15px;
        }