body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 13px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #1a1a2e;
            color: #eee;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        h1 {
            text-align: center;
            color: #00d9ff;
            margin-bottom: 10px;
            font-size: 28px;
        }
        
        .subtitle {
            text-align: center;
            color: #888;
            margin-bottom: 30px;
            font-size: 14px;
        }
        
        .panel {
            background: #252542;
            border-radius: 12px;
            padding: 20px;
            margin-bottom: 20px;
            border: 1px solid #3a3a5c;
        }
        
        .panel h2 {
            color: #00d9ff;
            font-size: 16px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn {
            background: #00d9ff;
            color: #1a1a2e;
            border: none;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        
        .btn:hover {
            background: #00b8d9;
            transform: translateY(-1px);
        }
        
        .btn:disabled {
            background: #444;
            color: #888;
            cursor: not-allowed;
            transform: none;
        }
        
        .btn-save {
            background: #00ff88;
        }
        
        .btn-save:hover {
            background: #00dd77;
        }
        
        .btn-export {
            background: #9c27b0;
            color: white;
        }
        
        .btn-export:hover {
            background: #7b1fa2;
        }
        
        .btn-secondary {
            background: #3a3a5c;
            color: #eee;
        }
        
        .btn-secondary:hover {
            background: #4a4a6c;
        }
        
        .file-info {
            background: #1a1a2e;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 13px;
        }
        
        .file-info .path {
            color: #00ff88;
            word-break: break-all;
        }
        
        .file-info .stats {
            color: #888;
            margin-top: 8px;
            font-size: 12px;
        }
        
        .includes-list {
            margin-top: 15px;
            max-height: 250px;
            overflow-y: auto;
        }
        
        .include-item {
            background: #1a1a2e;
            padding: 8px 12px;
            border-radius: 6px;
            margin-bottom: 6px;
            font-family: monospace;
            font-size: 12px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .include-item .icon {
            color: #00d9ff;
        }
        
        .include-item.error {
            border-left: 3px solid #ff4444;
        }
        
        .include-item.success {
            border-left: 3px solid #00ff88;
        }
        
        .btn-pick {
            background: #ff9800;
            color: #1a1a2e;
            border: none;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
            cursor: pointer;
            margin-left: auto;
            margin-right: 10px;
            white-space: nowrap;
        }
        
        .btn-pick:hover {
            background: #ffb74d;
        }
        
        .preview {
            background: #0d0d1a;
            border-radius: 8px;
            padding: 15px;
            margin-top: 15px;
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 12px;
            max-height: 400px;
            overflow: auto;
            white-space: pre-wrap;
            word-break: break-all;
            line-height: 1.5;
            color: #ccc;
        }
        
        .buttons-row {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            flex-wrap: wrap;
        }
        
        .status {
            padding: 10px 15px;
            border-radius: 8px;
            margin-top: 15px;
            font-size: 13px;
        }
        
        .status.success {
            background: rgba(0, 255, 136, 0.1);
            border: 1px solid #00ff88;
            color: #00ff88;
        }
        
        .status.error {
            background: rgba(255, 68, 68, 0.1);
            border: 1px solid #ff4444;
            color: #ff4444;
        }
        
        .status.info {
            background: rgba(0, 217, 255, 0.1);
            border: 1px solid #00d9ff;
            color: #00d9ff;
        }
        
        .steps {
            display: flex;
            gap: 15px;
            align-items: flex-start;
            flex-wrap: wrap;
        }
        
        .step {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .step-num {
            background: #00d9ff;
            color: #1a1a2e;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 14px;
            flex-shrink: 0;
        }
        
        .step-num.done {
            background: #00ff88;
        }
        
        .step-num.pending {
            background: #3a3a5c;
            color: #888;
        }
        
        .arrow {
            color: #3a3a5c;
            font-size: 20px;
        }
        
        .hint {
            color: #888;
            font-size: 12px;
            margin-top: 8px;
        }
        
        ::-webkit-scrollbar {
            width: 8px;
            height: 8px;
        }
        
        ::-webkit-scrollbar-track {
            background: #1a1a2e;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb {
            background: #3a3a5c;
            border-radius: 4px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: #4a4a6c;
        }
    