.split-container {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.left-half {
    flex: 1; /* Left half takes up the remaining space */
    height: 60vh;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow-y: auto;
    padding: 10px;
    background-color: #f9f9f9; /* Light background for the table container */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow effect */
}

.right-half {
    flex: 0 1 auto; /* Adjust width dynamically to content */
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px;
}

.right-half .button-item {
    margin-bottom: 15px;
}

.full-width {
    flex: 1;
    width: 100%;
}