.vcomp-soft-wrapper {
    --neo-border: 3px solid #111111;
    --neo-shadow: 5px 5px 0px #111111;
    --neo-shadow-active: 0px 0px 0px #111111;
    
    --bg-main: #fcfcfc;
    --bg-card: #ffffff;
    --clr-teal: #48cae4;
    --clr-orange: #f77f00;
    --clr-yellow: #fcbf49;
    --clr-danger: #ffadad;

    /* TĂNG KÍCH THƯỚC ĐỂ ĐỦ CHỖ CHO 2 CỘT */
    max-width: 950px; 
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    color: #111;
    background: var(--bg-main);
    padding: 25px;
    border: var(--neo-border);
    border-radius: 16px;
    box-shadow: var(--neo-shadow);
}
.vcomp-soft-wrapper * { box-sizing: border-box; }

.vcomp-soft-header {
    background: var(--clr-teal); padding: 20px;
    border: var(--neo-border); border-radius: 12px;
    text-align: center; margin-bottom: 25px; box-shadow: var(--neo-shadow); color: #111;
}
.vcomp-soft-header h2 { margin: 0 0 10px 0; font-size: 1.8rem; font-weight: 900; text-transform: uppercase;}
.vcomp-soft-header p { margin: 0; font-weight: 700; font-size: 0.95rem; }

.vcomp-body {
    background: var(--bg-card); padding: 25px;
    border: var(--neo-border); border-radius: 12px;
    box-shadow: var(--neo-shadow);
}

/* =========================================
   LAYOUT 2 CỘT RESPONSIVE 
   ========================================= */
.vcomp-main-layout {
    display: flex;
    flex-direction: column; /* Mobile: xếp dọc */
    gap: 25px;
}
.vcomp-col {
    flex: 1;
    min-width: 0; /* Chống vỡ layout khi chữ quá dài */
}
/* Desktop: min-width 768px trở lên sẽ xếp ngang */
@media (min-width: 768px) {
    .vcomp-main-layout {
        flex-direction: row;
        align-items: flex-start;
    }
}

.vcomp-group { margin-bottom: 20px; }
.vcomp-label { font-weight: 900; font-size: 1rem; margin-bottom: 10px; display: block; }

/* Khung Upload */
.vcomp-upload-box {
    background: var(--clr-yellow); border: 2px dashed #111; border-radius: 12px;
    padding: 35px 20px; text-align: center; cursor: pointer; transition: 0.2s;
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    height: 100%; min-height: 200px; /* Cân đối chiều cao với cột phải */
}
.vcomp-upload-box:hover { filter: brightness(0.95); }
.vcomp-icon { font-size: 3rem; }
.vcomp-filename { font-weight: 800; font-size: 1.05rem; word-break: break-all; color: #111; }
.vcomp-filesize { font-weight: 800; font-size: 0.9rem; color: #fff; background: #d90429; padding: 5px 15px; border-radius: 20px; border: 2px solid #111; margin-top: 5px;}

/* Select Box */
.neo-select-wrapper { position: relative; }
.neo-select {
    width: 100%; appearance: none; background: #fff;
    border: var(--neo-border); border-radius: 8px;
    padding: 14px 15px; font-family: inherit; font-size: 0.95rem; font-weight: 700;
    cursor: pointer; outline: none; box-shadow: 3px 3px 0px #111; transition: 0.2s; color: #111;
}
.neo-select:focus { transform: translate(-2px, -2px); box-shadow: 5px 5px 0px #111; background: #f0f8ff;}
.neo-select-wrapper::after { content: "▼"; position: absolute; right: 15px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: 1rem; color: #111; font-weight: bold; }

/* Bảng Stats (Kết quả sau khi nén) */
.vcomp-stats-box {
    background: #111; color: #fff; padding: 20px; border-radius: 12px;
    border: 3px solid #111; box-shadow: 4px 4px 0px var(--clr-teal); margin-bottom: 20px;
}
.vcomp-stats-box p { margin: 8px 0; font-weight: 700; font-size: 0.95rem; display: flex; justify-content: space-between; border-bottom: 1px dashed #333; padding-bottom: 5px;}
.vcomp-stats-box p:last-child { border-bottom: none; padding-bottom: 0;}
.vcomp-stats-box b { font-size: 1.1rem; }

/* Nút Submit */
.vcomp-btn-primary {
    width: 100%; padding: 18px; font-family: inherit; font-size: 1.15rem; font-weight: 900; text-transform: uppercase;
    background: var(--clr-orange); border: var(--neo-border); border-radius: 12px; cursor: pointer;
    box-shadow: var(--neo-shadow); transition: 0.15s; color: #111; margin-top: 5px;
}
.vcomp-btn-primary:active:not(:disabled) { transform: translate(3px, 3px); box-shadow: var(--neo-shadow-active); }
.vcomp-btn-primary:disabled { opacity: 0.6; cursor: not-allowed; filter: grayscale(1); box-shadow: none; transform: none; background: #ccc;}

/* Khung Progress */
.vcomp-status-box { margin-top: 20px; padding: 20px; background: #fff; border: var(--neo-border); border-radius: 12px; text-align: center; box-shadow: 3px 3px 0px #111; }
.vcomp-status-box h4 { margin: 0 0 10px 0; font-size: 1.05rem; font-weight: 900; color: #111; }
.vcomp-progress-bar { width: 100%; height: 24px; background: #eee; border: 2px solid #111; border-radius: 50px; overflow: hidden; }
.vcomp-progress-fill { width: 0%; height: 100%; background: var(--clr-teal); transition: width 0.2s ease; border-right: 2px solid #111;}