.fileshelf-errors {
    padding: 10px;
    margin-bottom: 5px;
    border: 1px solid #ff726d;
    background-color: #ffb2b6;
    display: none;
}

.fileshelf-errors h3 {
    color: darkred;
}

.fileshelf-container {
    color: #333;
    overflow: hidden;
}

.fileshelf-container * {
    box-sizing: border-box;
}

.fileshelf-container.dark {
    color: #E6E6E6;
}

.fileshelf-container.light {
    color: #222222;
}

.fileshelf-container.lohmann {
    color: #222222;
}

.fileshelf-container .fs-controls {
    width: 99.97%;
    height: 9%;
    padding: 7px;
}

.fileshelf-container .fs-controls.dark {
    background-color: #333333;
}

.fileshelf-container .fs-controls.light {
    background-color: gainsboro;
}

.fileshelf-container .fs-controls.lohmann {
    background-color: #FF9900;
}

.fileshelf-container .fs-upload-box {
    display: flex;
    justify-content: flex-end;
}

.fileshelf-container .fs-table {
    width: 100%;
    height: 95%;
    border-collapse: collapse;
}

.fileshelf-container .fs-table thead.dark {
    background-color: #333333;
}

.fileshelf-container .fs-table thead.light {
    background-color: gainsboro;
}

.fileshelf-container .fs-table thead.lohmann {
    background-color: #FF9900;
}

.fileshelf-container .fs-table-body {
    display: block;
    width: 100%;
    overflow-y: auto;
    max-height: 92%;
}

.fileshelf-container .fs-table-body .selectable:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}

.fileshelf-container .fs-table tr {
    display: flex;
}

.fileshelf-container .fs-table .fs-table-row.process {
    background-color: #ceffd9;
}

.fileshelf-container .fs-table th {
    padding: 10px;
    border-bottom: 1px solid #ccc;
    text-align: left;
    display: block;
    width: 45%;
    word-wrap: break-word;
    word-break: break-word;
}

.fileshelf-container .fs-table td {
    padding: 10px;
    text-align: left;
    display: block;
    width: 45%;
    word-wrap: break-word;
    word-break: break-word;
    color: black;
    border-bottom: 1px solid #ccc;
    height: 55px;
}

.fileshelf-container .fs-table th:first-child {
    width: 15%;
}

.fileshelf-container .fs-table td:first-child {
    width: 15%;
}

.fileshelf-container .fs-button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    user-select: none;
    background-image: none;
    border: 1px solid #ccc;
    background-color: white;
    border-radius: 4px;
    margin-left: 2px;
}

.fileshelf-container .fs-uploader {
    display: none;
}

.fileshelf-container.dark .fs-button {
    border: 1px solid #000000;
    background-color: #4c4c4c;
    color: white;
}

.fileshelf-container.lohmann .fs-button {
    border: 1px solid #000000;
    background-color: #363636;
    color: white;
}

.fileshelf-container.light .fs-button {
    border: 1px solid #c9c9c9;
    background-color: white;
    color: #222222;
}

.fileshelf-container .fs-button i {
    margin-left: 2px;
}

.fileshelf-container .fs-button.danger {
    color: white;
    background-color: #d9534f;
    border-color: #d43f3a;
}

