        /* Editor specific styles */
        .editor-container {
            max-width: 900px;
            margin: 20px auto;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        
        .upload-box {
            border: 2px dashed #4CAF50;
            padding: 40px;
            text-align: center;
            cursor: pointer;
            margin-bottom: 20px;
            transition: all 0.3s;
        }
        
        .upload-box:hover {
            background-color: #f8f8f8;
        }
        
        .upload-box i {
            font-size: 50px;
            color: #4CAF50;
            margin-bottom: 15px;
        }
        
        .preview-container {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .preview-box {
            flex: 1;
            text-align: center;
        }
        
        .preview-box img {
            max-width: 100%;
            max-height: 300px;
            border: 1px solid #ddd;
        }
        
        .adjustment {
            margin-bottom: 15px;
        }
        
        .adjustment label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .slider-container {
            display: flex;
            align-items: center;
        }
        
        .slider-container input[type="range"] {
            flex-grow: 1;
        }
        
        .slider-container span {
            width: 50px;
            text-align: center;
        }
        
        .action-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }
        
        .action-buttons button {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-weight: bold;
        }
        
        .btn-download {
            background-color: #4CAF50;
            color: white;
        }
        
        .btn-home {
            background-color: #2196F3;
            color: white;
        }
        
        .btn-new {
            background-color: #f44336;
            color: white;
        }
        
        .ad-space {
            margin: 30px 0;
            padding: 20px;
            background: #f5f5f5;
            text-align: center;
            border-radius: 5px;
        }
        
        #imagePreview {
            display: none;
        }
        
        #imageCanvas {
            display: none;
        }