﻿fluent-data-grid-row:has([row-selected]) {
    background-color: var(--neutral-fill-stealth-hover)
}
.thumbnail-placeholder {
    width: 100px;
    height: 56px;
    background-color: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    font-size: 12px;
    font-family: Arial, sans-serif;
    border: 1px solid #ccc;
}

.img-thumbnail {
    height: 100px;
    width: 100px;
    object-fit: contain;
}

.thumbnail-placeholder svg {
    width: 50px;
    height: 50px;
    fill: #555;
}

/* start edit-form */

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.edit-form {
    background-color: white;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    min-width: 300px;
    max-width: 500px;
    max-height: 800px;
    width: 30%;
    transform: translateY(-100%);
    animation: slideIn 0.3s forwards;
}

    .edit-form.header {
        display: flex;
        margin-left: 10px;
        border-bottom: none;
        align-content: center;
    }

.edit-form-titel {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    margin-left: 0;
    flex-grow: 1;
}

.overlay-footer .btn {
    padding: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 14px;
    width: 125px;
}

.overlay-footer {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

@keyframes slideIn {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes slideOut {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-100%);
    }
}

.overlay.closed {
    animation: slideOut 0.3s forwards;
}
/* end edit-form */


.dialog-content {
    width: 100%;
    height: 100%;
}

.confirmdialog {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding-top: 10px;
    margin-left: 15px;
    box-shadow: 3px 3px 5px #535353;
    border-radius: 10px;
    border: 2px solid #600;
    min-width: 400px;
    min-height: 250px;
    overflow: hidden;
}


.dialoog-header {
    display: flex;
    margin-left: 10px;
    border-bottom: none;
    align-content: center;
}

.header-icoon {
    font-size: 18px;
    font-weight: bold;
}

.header-titel {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: left;
    margin-left: 20px;
    flex-grow: 1;
}

.sluit-knop {
    color: #aaa;
    float: right;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}

.dialoog-content {
    background-color: #fefefe;
    margin: 15% auto;
    margin-left: 10px;
    width: 100%;
    max-width: 300px;
    font-size: 1.2rem;
}

.dialoog-footer .btn {
    padding: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 14px;
    width: 125px;
}

.dialoog-footer {
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.dropzone {
    background: #e9e9e9 !important;
    border-radius: 5px;
    text-align: center;
    padding: 35px;
    margin-bottom: 5px;
}

.align-middle {
    vertical-align: middle !important;
}