/* full page height */
.wrapper {
    height: 100vh;
}

.sidebar {
  overflow-y: auto;
}

/* label text for items on sidebar */
.label-text {
    color: black;
}

/* text input for item labels on sidebar */
.label-input {
    display: none;
    padding: 0 .75rem;
}

/* hovering on list in sidebar */
.list-group-item:hover {
    color: white;
	background-color: #1CABE3;
}

.list-group-item {
    border: none;
}

/* action icons on sidebar */
.actionbar {
    align-self: end;
    text-align: end;
    margin-top: 0.5rem;
    height: 2rem;
    width: 100%;
    padding-right: 1rem;
/*
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
*/
    color: #1CABE3;
    border-top: 1px solid #1CABE3;
}

.content {
    margin-right: 1rem;
    overflow: auto;
    object-fit: cover;
}

/* center both vertically and horizontally in div */
.centered {
    display: grid;
    justify-content: center;
    align-items: center;
    height: 100%;
}

/* wrapper for thumbnail preview */
.preview-wrapper {
    height: 100%;
}

/* preview caption */
.caption {
    font-size: 1.5rem;
}

/* header for preview */
.preview-header {
    color: inherit;
    padding-top: 0.5rem;
    margin-left: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #1CABE3;
}

/* remove focus rectangle on anchors for dropdown menus on folder content lists */
a[data-bs-toggle="dropdown"]:focus {
    outline: none;
}

/* content of preview folder list */
.preview-content {
    display: grid;
    padding: 1rem;
    grid-gap: 1rem;
    background-color: white;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.preview-content a, td a {
    text-decoration: none;
}

/* icons for file types */
.ico32 {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
    object-fit: contain;
}

/* icon in folder icon view */
.ico64 {
    height: 64px;
    margin-right: 0.5rem;
    object-fit: contain;
}

/* checkbox in icon view */
.check-item {
    position: absolute;
    margin-top: 0;
}

/* actions for selected items */
.actions {
    display: none;
}

/* highlight element as drop target */
.accept-drop {
    border: 2px solid red;
}

/* links in list view */
tr a {
    color: black;
    text-decoration: none;
}


/* action cells in list view */
td.action {
    width: 1rem;
}

/* action button on top right of preview page */
.btn-action {
    margin-top: 0.5rem;
    float: right;
    margin-right: 1rem;
    color: #1CABE3;
}


.preview {
/*    background-color: white; */
    max-width: 100%;
    /* center in container */
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.dropzone {
    background-color: inherit;
    border: none;
    color: rgb(120,120,120);
    font-weigth: 100;
    min-height: 0px; !important;
    display: flex;
    flex-direction: column;
}
.dropzone {
    padding: 0.5rem 1rem;
}
.dropzone .dz-message {
    margin: auto 0 0;
}

.search-control {
    margin: 0.5rem 1rem 0.25rem 1rem;
}

.search-control input {
/*
    background-color: rgb(90, 90, 90);
    color: white;
 */
}

.search-icon {
    cursor: pointer
}

/* icon in dropdown menu */
.menu-icon {
    font-size: small;
    font-weight: light;
    padding-right: 0.5rem;
    text-align: center;
    width: 2em;
}