.file-drop-area {
            border: 2px dashed #ccc;
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            background-color: #f8fafc;
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .file-drop-area:hover, .file-drop-area.drag-over {
            background-color: #eef2ff;
            border-color: #0d6efd;
        }
        .preview-textarea {
            font-family: 'Segoe UI', system-ui, monospace;
            font-size: 0.9rem;
            line-height: 1.5;
            min-height: 280px;
            resize: vertical;
        }
        .conversion-option {
            background-color: #f9f9fb;
            border-radius: 12px;
            padding: 1rem;
            margin: 1rem 0;
        }
        .badge-private {
            background-color: #e3f7ec;
            color: #1e7e34;
            font-weight: 500;
        }
        .example-card {
            background: #f0f4f9;
            border-left: 4px solid #0d6efd;
            padding: 0.8rem 1.2rem;
            margin: 1rem 0;
        }
        .step-icon {
            width: 36px;
            height: 36px;
            background-color: #0d6efd20;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 12px;
        }
        .feature-list {
            columns: 2;
            column-gap: 2rem;
        }
        @media (max-width: 768px) {
            .feature-list {
                columns: 1;
            }
        }