mohe {
    --primary: #4f46e5;
    --success: #10b981;
    --dark: #0f172a;
    --gray: #64748b;
    display: block;
    background: #f8fafc;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 60px 20px;
}

mohe .glass-card {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid #e2e8f0;
}

mohe .view-step { display: none; }
mohe .view-step.active { display: block; animation: slideUp 0.4s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

mohe .ui-header { text-align: center; margin-bottom: 35px; }
mohe .ui-header h2 { font-size: 1.8rem; font-weight: 800; color: var(--dark); }
mohe .ui-header h2 span { color: var(--primary); }

/* Dropzone */
mohe .drop-zone {
    border: 2px dashed #cbd5e1;
    border-radius: 20px;
    padding: 50px 20px;
    text-align: center;
    background: #fcfcfd;
    position: relative;
    cursor: pointer;
    transition: 0.3s;
}
mohe .drop-zone:hover { border-color: var(--primary); background: #f5f7ff; }
mohe #fileSelector { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; cursor: pointer; }
mohe .dz-icon { font-size: 40px; display: block; margin-bottom: 10px; }

/* File List UI */
mohe #selectedFilesWrapper { margin-top: 30px; border-top: 2px solid #f1f5f9; padding-top: 20px; }
mohe .list-header { font-weight: 700; color: var(--dark); margin-bottom: 15px; font-size: 14px; }
mohe #nameDisplayList { list-style: none; padding: 0; margin-bottom: 25px; }
mohe #nameDisplayList li {
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 12px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    border: 1px solid #e2e8f0;
}

mohe .main-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 16px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 16px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px rgba(79, 70, 229, 0.2);
}

/* Step 2 Result Row */
mohe .result-row {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 15px;
    margin-bottom: 15px;
    gap: 20px;
}
mohe .p-thumb { width: 80px; height: 60px; border-radius: 10px; object-fit: cover; background: #eee; }
mohe .p-info { flex: 1; }
mohe .p-info h4 { font-size: 14px; margin-bottom: 4px; color: var(--dark); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 300px; }
mohe .p-info p { font-size: 12px; color: var(--gray); }
mohe .p-info strong { color: var(--success); }

mohe .dl-btn {
    background: var(--dark);
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    transition: 0.3s;
}
mohe .dl-btn:hover { background: var(--success); }
mohe .back-btn { background: none; border: none; color: var(--primary); font-weight: 600; cursor: pointer; margin-top: 10px; }

mohe .hidden { display: none; }