﻿body {
    /*padding-top: 50px;
    padding-bottom: 20px;*/
}

/* Set padding to keep content from hitting the edges */
.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

/* Set width on the form input elements since they're 100% wide by default */
/*input,
select,
textarea {
    max-width: 280px;
}*/

hr{
    margin: 2px;
    padding: 0;
}

.draggable-list{
    border: 1px solid gray;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: hidden;
    overflow-y: auto;
    white-space: nowrap;
    height: 300px;
}

    .draggable-list li {
        display: block;
        text-overflow: ellipsis;
        overflow: hidden;
        width: 100%;
        padding: 5px;
        cursor: default;
        user-select: element;
    }

        .draggable-list li:hover {
            background-color: lightgray;
        }

        .draggable-list li.selected {
            background-color: lightskyblue;
        }

        .draggable-list li.used{
            background-color: lightcoral;
        }

tr.selected{
    background-color: lightgray;
}