/* File Attachment */
#orbFileControl{
    border: 1px solid #ccc;
}

#DragAndDropTarget {
    width: 100%;
    height: 200px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 16px;
}

#DragAndDropTarget.ondrag {
    border: 1px solid var(--primary);
    background: var(--lightgrey);
}

#FilesList {
    padding: 0px;
    margin-bottom: 0px;
}

#FilesList .fileListItem {
    display: grid;
    grid-template-columns: auto 1fr auto auto;
    gap: 8px;
    padding: 8px;
    margin-top: -1px;
    border-top: 1px solid var(--lightgrey);
    border-collapse: collapse;
    align-items: end;
}

#FilesList .fileListItem.restricted {
    color: var(--red);
}

#FilesList .deleteicon, #FilesList .fileicon {
    height: 20px;
    width: 20px;
}

.iconbutton {
    background: none;
    outline: none;
    border: none;
}

#DragAndDropTarget .h3 {
    margin: 0;
}

#DragAndDropTarget #addFileButton {
    width: max-content;
}
/* End File Attachment */
