    /* Ensure both lists take up equal space */
    .sortable-list {
        min-height: 250px; /* Prevents collapsing */
        background: #f9f9f9;
        border: 2px dashed #ccc;
        padding: 10px;
        width: 100%;
    }

    .sortable-item {
        background: #fff;
        padding: 10px;
        margin: 5px;
        border: 1px solid #ddd;
        cursor: grab;
        list-style: none;
    }

    /* Ensure wrapper row is a flex container */
    .wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap !important; /* Prevents stacking */
        gap: 30px; /* Adds spacing between the lists */
     }

    /* Ensure equal column width */
    .group-container {
        flex: 1; /* Ensures equal width */
        padding: 10px;
        text-align: center;
        min-width: 40%; /* Prevents shrinkage */
        max-width: 45%; /* Ensures lists take up nearly half the screen */
    }

    /* Prevent title wrapping */
    .group-container h3 {
        white-space: nowrap; /* Prevents multi-line headers */
        overflow: hidden;
        text-overflow: ellipsis; /* Adds "..." if too long */
    }


    /* Style the Font Awesome Icon */
    .swap-icon {
        font-size: 40px; /* Adjust size */
        color: #007bff; /* Bootstrap primary blue */
        flex: 0 0 50px; /* Prevents icon from collapsing */
        text-align: center;
    }

