.pvifa-soft-wrapper {
    /* MÀU SẮC */
    --neo-border: 3px solid #111111;
    --neo-shadow: 5px 5px 0px #111111;
    
    --bg-main: #f4f6f8; 
    --clr-yellow: #fde74c; 
    --clr-white: #ffffff;
    --clr-blue: #2496ed;
    --clr-red: #ff006e;
    --clr-green: #06d6a0;
    --clr-text: #111111;

    max-width: 1000px; 
    margin: 0 auto;
    font-family: system-ui, -apple-system, sans-serif;
    color: var(--clr-text);
    background: var(--bg-main);
    padding: 20px;
    border: var(--neo-border);
    border-radius: 16px;
    box-shadow: 6px 6px 0px #111111;
}

.pvifa-soft-wrapper * { box-sizing: border-box; }

/* HEADER TRẮNG SÁNG */
.pvifa-soft-header {
    background: var(--clr-white); padding: 20px; color: var(--clr-text);
    border: var(--neo-border); border-radius: 12px;
    text-align: center; margin-bottom: 20px; box-shadow: var(--neo-shadow);
}
.pvifa-soft-header h2 { margin: 0 0 10px 0; font-size: 1.8rem; font-weight: 900; text-transform: uppercase;}
.pvifa-soft-header p { margin: 0; font-weight: 600; font-size: 0.95rem; color: #555;}

/* BỐ CỤC 2 CỘT */
.pvifa-main-layout { display: flex; flex-direction: column; gap: 20px; }
.pvifa-col { display: flex; flex-direction: column; gap: 20px; min-width: 0;}
@media (min-width: 768px) { 
    .pvifa-main-layout { flex-direction: row; align-items: stretch; } 
    .pvifa-col-left { flex: 5; }
    .pvifa-col-right { flex: 5; }
}

/* CARDS: ĐỔI MÀU TRÁI TRẮNG - PHẢI VÀNG */
.pvifa-card {
    padding: 20px; border: var(--neo-border);
    border-radius: 12px; box-shadow: var(--neo-shadow); display: flex; flex-direction: column; height: 100%; transition: 0.3s;
}
.pvifa-bg-white { background: var(--clr-white); }
.pvifa-bg-yellow { background: var(--clr-yellow); }
.pvifa-bg-dark { background: #111; color: #fff;}

.pvifa-flex-between { display: flex; justify-content: space-between; align-items: center; }
.pvifa-section-title { font-size: 1.1rem; font-weight: 900; color: var(--clr-text); text-transform: uppercase; }

/* ĐƯỜNG KẺ NGANG */
.pvifa-divider { border: none; border-top: 2px dashed #ccc; margin: 15px 0; }

/* FORMS CỘT TRÁI */
.pvifa-form-group { margin-bottom: 15px; }
.pvifa-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pvifa-form-group label { display: block; font-size: 0.95rem; font-weight: 900; color: var(--clr-text); margin-bottom: 8px; }

.pvifa-input-control, .pvifa-select-control {
    width: 100%; padding: 12px 15px; border: 3px solid #111; border-radius: 8px;
    font-size: 1.1rem; font-weight: 900; outline: none; box-shadow: inset 2px 2px 0px rgba(0,0,0,0.05); font-family: monospace; background: var(--clr-white); color: var(--clr-text);
}
.pvifa-input-control:focus, .pvifa-select-control:focus { border-color: var(--clr-blue); }
.pvifa-select-control { cursor: pointer; }

/* BUTTONS */
.pvifa-btn-action {
    width: 100%; background: #111; color: var(--clr-yellow); padding: 15px; margin-top: auto;
    border: 3px solid #111; border-radius: 8px; font-size: 1.1rem; font-weight: 900;
    cursor: pointer; box-shadow: 4px 4px 0px #111; transition: 0.1s; text-transform: uppercase;
}
.pvifa-btn-action:active { transform: translate(4px, 4px); box-shadow: 0px 0px 0px #111; }

.pvifa-btn-small {
    padding: 6px 12px; background: #eee; border: 2px solid #111; border-radius: 6px;
    font-weight: 900; font-size: 0.85rem; cursor: pointer; box-shadow: 2px 2px 0px #111; transition: 0.1s; color: var(--clr-text);
}
.pvifa-btn-small:active { transform: translate(2px, 2px); box-shadow: 0px 0px 0px #111; }

/* BADGE */
.pvifa-badge { background: #fff; color: #111; padding: 6px 10px; border: 2px solid #111; border-radius: 6px; font-weight: 900; font-size: 0.85rem; box-shadow: 2px 2px 0px #111; white-space: nowrap;}
.pvifa-badge.active { background: var(--clr-green); color: #111; }
.pvifa-badge.error { background: var(--clr-red); color: #fff; }

/* DASHBOARD KẾT QUẢ - BÊN PHẢI VÀNG */
.pvifa-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; transition: 0.3s;}
.pvifa-stat-item { border: 3px solid #111; border-radius: 8px; padding: 15px; display: flex; flex-direction: column; gap: 8px; box-shadow: 3px 3px 0px #111;}
.pvifa-stat-item span { font-size: 0.85rem; color: #555; text-transform: uppercase; font-weight: 900; }
.pvifa-stat-item b { font-family: monospace; font-size: 1.2rem; color: var(--clr-text); word-break: break-all; font-weight: 900;}

.pvifa-stat-hero { grid-column: 1 / -1; align-items: center; text-align: center; padding: 25px;}
.pvifa-stat-hero span { color: #555; font-size: 1rem;}
.pvifa-stat-hero b { font-size: 3rem; color: var(--clr-blue); line-height: 1.2;}

.pvifa-stat-full { grid-column: 1 / -1; align-items: center; text-align: center;}
.pvifa-stat-full b { font-size: 1.8rem; }
.pvifa-stat-full span { color: #ccc;}

/* INFO BOX TRẮNG BÊN TRÁI */
.pvifa-info-box { background: var(--clr-white); padding: 15px; border: 3px solid #111; border-radius: 8px; margin-top: auto; box-shadow: 3px 3px 0px #111;}
.pvifa-info-box h4 { margin: 0 0 8px 0; font-weight: 900; color: var(--clr-text); font-size: 1rem;}
.pvifa-info-box p { margin: 0; font-size: 0.9rem; font-weight: 600; line-height: 1.6; color: #333;}