#frmTinyFileUpload *{
    margin: 0;
    padding: 0;
}
.plugin {
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-rows: 1fr 50px;
    font-family: Arial, Helvetica, sans-serif;
}

.tiny-explorer {
    display: grid;
    grid-template-columns: 200px 1fr;
    user-select: none;
    overflow: hidden;
    max-height: 465px;
}

#tiny-folders {
    background-color: #3c3c3c;
    color: #fff;
    overflow-y: auto;
}

#tiny-folders li {
    list-style: none;
    line-height: 1.5em;
    border-bottom: solid 1px #444;
    padding: 5px;
    cursor: pointer;
}

#tiny-files {
    overflow-y: auto;
    padding: 3px;
}
.tiny-file img {
	max-height: 30px;
}
#tiny-files li {
    list-style: none;
    border: solid 1px #444;
    padding: 5px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    font-size: 0.8em;
    cursor: pointer;
    border-radius: 5px;
}
#tiny-files li:hover, #tiny-folders li:hover{
    box-shadow:  2px 2px 2px #000;
    background-color: #eee;
}
#tiny-files li.active{
    box-shadow:  2px 2px 2px #000;
    background-color: #3399ff;
}
#tiny-folders .active{
	background: #fff;
	color: #000;
    border-top: solid 1px #dee2e6;
    border-bottom: solid 1px #dee2e6;
}
#file_upload {
    padding: 5px;
}
.delete-file{
    padding: 3px;
    border-radius: 3px;
}
.delete-file:hover{
	background: #04ff00;
}
