
/* ThuChi Split Layout */
.thuchi-split-container {
    display: flex;
    gap: 10px;
    width: 100%;
}

.thuchi-column {
    flex: 1;
    min-width: 0; /* Important for flex child overflow */
    display: flex;
    flex-direction: column;
}

.thuchi-column .table-container {
    overflow-x: auto;
    width: 100%;
    /* Ensure table doesn't force container wide */
    display: block; 
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .thuchi-split-container {
        flex-direction: column; /* Stack vertically on mobile */
    }

    .thuchi-column {
        width: 100%; /* Full width */
        margin-bottom: 20px;
    }
}
