#ul-questions, #original-boxes, .drop-boxes {
        margin:0;
        padding:0;
        list-style-type: none;
}


.drop-boxes {
        margin-top:10px;
        border:1px dashed #b4b4b4;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;     
    
}
.drop-boxes-wrapper {
        display:block;
}
.drop-boxes li {
        box-sizing: border-box;
        cursor: move;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        line-height:34px;
}


.drop-boxes li:hover 
{
        border: 1px solid #5d64da;
}
.drop-boxes li:active 
{
        background: #fff;
        border:1px solid #5d64da;
        -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
        -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
        box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
}



#original-boxes li {
        box-sizing: border-box;
        margin:10px;
        border:1px solid #96C1D6;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;  
        cursor:move;
        line-height: 34px;
}

#original-boxes li:hover 
{
        border: 1px solid #5d64da;
}

#original-boxes li:active 
{
        box-sizing: border-box;
        margin:10px;
        background: #fff;
        -webkit-box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
        -moz-box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
        box-shadow: 3px 3px 3px rgba(0,0,0,0.35);
}

.centered-table {
        margin-left: auto;
        margin-right: auto;
        border-collapse: separate;
        border-spacing: 0;
}

.centered-table th {
        font-weight: normal;
        border-bottom:1px solid #d8d8d8;
}

.drop-boxes {
        width: 100%; /* Adjust as necessary */
}

.vertical-line {
        position: relative;
}

.vertical-line::before {
        content: "";
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 1px;
        height: 100%;
        background: #d8d8d8;
}

.center-div {
        margin-left: auto;
        margin-right: auto;
}

.center-table {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        height: 100%;
}

@media screen and (max-width: 600px) {
        .center-div {
                padding: 0; /* Remove padding on small screens */
        }
}
