
        .zib-advanced-uploader {
            max-width: 900px;
            margin: 30px auto;
            background: #fff;
            border-radius: 16px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            overflow: hidden;
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
        }
        .uploader-header {
            background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
            color: #fff;
            padding: 25px 30px;
        }
        .uploader-header h3 {
            margin: 0;
            font-size: 24px;
            font-weight: 600;
        }
        .uploader-header p {
            margin: 8px 0 0;
            opacity: 0.9;
            font-size: 14px;
        }
        .uploader-body {
            padding: 30px;
        }
        .form-group {
            margin-bottom: 25px;
        }
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
            font-size: 14px;
        }
        .form-group label i {
            margin-right: 5px;
        }
        .file-input-wrapper {
            position: relative;
            display: inline-block;
            width: 100%;
        }
        .file-input-wrapper input[type="file"] {
            position: absolute;
            opacity: 0;
            width: 100%;
            height: 100%;
            cursor: pointer;
        }
        .file-input-label {
            display: block;
            padding: 40px 20px;
            background: #f8f9fa;
            border: 2px dashed #ddd;
            border-radius: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        .file-input-label:hover {
            border-color: #2271b1;
            background: #f0f8ff;
        }
        .file-input-label .upload-icon {
            font-size: 48px;
            display: block;
            margin-bottom: 10px;
        }
        .file-input-label .file-hint {
            font-size: 12px;
            color: #999;
            margin-top: 8px;
        }
        .image-preview {
            margin-top: 15px;
            text-align: center;
            display: none;
        }
        .image-preview img {
            max-width: 100%;
            max-height: 200px;
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        }
        .checkbox-group {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 0;
        }
        .checkbox-group input {
            width: 18px;
            height: 18px;
            cursor: pointer;
        }
        .checkbox-group label {
            margin: 0;
            cursor: pointer;
        }
        .crop-options, .watermark-options {
            margin-top: 15px;
            padding: 15px;
            background: #f9f9f9;
            border-radius: 8px;
        }
        .option-row {
            margin-bottom: 15px;
        }
        .option-row select, .option-row input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 6px;
            font-size: 14px;
        }
        .size-inputs {
            display: flex;
            gap: 10px;
        }
        .size-inputs input {
            flex: 1;
        }
        .submit-btn {
            width: 100%;
            background: linear-gradient(135deg, #2271b1 0%, #135e96 100%);
            color: #fff;
            padding: 14px 30px;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }
        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }
        .upload-progress {
            text-align: center;
            padding: 40px;
            background: #f8f9fa;
            border-radius: 12px;
            margin-top: 20px;
            display: none;
        }
        .spinner {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 3px solid #f3f3f3;
            border-top: 3px solid #2271b1;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        .upload-result {
            margin-top: 25px;
            padding: 25px;
            background: #f8f9fa;
            border-radius: 12px;
            display: none;
        }
        .upload-success {
            text-align: center;
        }
        .success-icon {
            font-size: 48px;
            color: #28a745;
            margin-bottom: 15px;
            display: inline-block;
        }
        .upload-success img {
            max-width: 100%;
            max-height: 400px;
            border-radius: 8px;
            margin: 15px 0;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        .download-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #28a745;
            color: #fff;
            padding: 10px 25px;
            text-decoration: none;
            border-radius: 6px;
            margin-top: 15px;
            transition: all 0.3s;
        }
        .download-link:hover {
            background: #218838;
            color: #fff;
            transform: translateY(-2px);
        }
        .file-info {
            margin-top: 15px;
            padding: 10px;
            background: #e9ecef;
            border-radius: 6px;
            font-size: 13px;
            color: #666;
        }
        .upload-error {
            text-align: center;
            padding: 20px;
            background: #f8d7da;
            color: #721c24;
            border-radius: 8px;
        }
        .error-icon {
            font-size: 24px;
            margin-right: 8px;
        }
        @media (max-width: 768px) {
            .uploader-body {
                padding: 20px;
            }
            .uploader-header {
                padding: 20px;
            }
            .uploader-header h3 {
                font-size: 20px;
            }
        }
        