﻿.dual-list-container {
    display: flex;
    gap: 40px;
    padding: 30px;
    justify-content: center;
    align-items: flex-start;
    font-family: "Segoe UI", sans-serif;
}

.list-wrapper {
    width: 280px;
}

    .list-wrapper h5 {
        text-align: center;
        margin-bottom: 15px;
    }

.draggableitemlist {
    list-style-type: none;
    padding: 10px;
    min-height: 280px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #fafafa;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: box-shadow 0.2s ease;
}

    .draggableitemlist:hover {
        box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    }

.draggable-item {
    margin: 8px 0;
    padding: 10px 12px;
    background: white;
    border-radius: 6px;
    border: 1px solid #ddd;
    cursor: move;
    transition: background 0.2s, box-shadow 0.2s;
}

    .draggable-item:hover {
        background: #f2f9ff;
    }

.ui-selected {
    background-color: #007bff !important;
    color: white;
    font-weight: bold;
}

.hidden-drag {
    display: none;
}

#selectionName {
    padding: 10px;
    width: 300px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#submitSelection {
    margin-left: 10px;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

    #submitSelection:hover {
        background-color: #0056b3;
    }