body
{
    background-color: #FFFFFF;
}

.table 
{
    border: 1px solid #EEEEEE;
    border-collapse: seperate;
    border-spacing: 0;
    background-color: #FFFFFF;

} 

.table td,
.table th {
    border: 1px solid #EEEEEE;
    color: #000;
}

.table thead {
    position: sticky;
    top: 0;
    background-color: #EEEEEE;
    z-index: 5;
}
.table thead th {
    background-color: #EEEEEE;
}

.image {
    display: flex;
    flex-direction: column;
    gap: 5px;
}   
.image .thumbnail {
    width: 100%;
    min-width: 15rem;
    height: auto;
    background-color: #EEEEEE;
    border: 3px dashed #CCC;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.image .thumbnail:before {
    display: block;
    content: '';
    width: 100%;
    height: auto;
    padding-top: 100%;
    position: relative;
}
.image .thumbnail.uploaded {
    border-color: 3px solid #CCC;
}
td.required .image .thumbnail {
    border: 3px dashed #333333;
}
td.required .image .thumbnail.uploaded {
    border: 3px solid #333333;
}
.image .thumbnail.uploaded img {
    position: absolute;
    object-fit: contain;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.image .thumbnail label {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.image .thumbnail .badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;  
    padding: 1em;
    border-radius: 6px;
}
.image .thumbnail input {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    z-index: 1;
}
.image .thumbnail button {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    z-index: 2;
    width: auto;
}
.image .links {
    display: flex;
    flex-direction: column;
    gap: 5px;
}   
.image .btn {
    width: 100%;
}