:root {
    font-size: 10px;
    font-family: Arial, 'sans-serif';
}

@media print {
    body {
        background: white;
        margin: 0;
        /* box-shadow: 0; */
    }
}





body {
    background: rgb(204,204,204);
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;

    display: flex;
    gap: 16px;
}

.document {  
    width: 21cm;
    height: 29.7cm;
    
    background: white;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-bottom: 0.5cm;
    box-shadow: 0 0 0.5cm rgba(0,0,0,0.5);
}

header {
    background-color: magenta;
    height: 100px;
    width: 100%;
}

main {
    background-color: lightgreen;
    flex: 1 0 auto;
}

table {
    height: 100%;
    width: 100%;
}

footer {
    background-color: magenta;
    height: 100px;
    width: 100%;
}


.artist-image-wrapper {
    max-width: 150px;
    max-height: 150px;
    width: 100%;
    height: 100%;
    position: relative;
}
.artist-image-wrapper #drop-zone,
#imagePreview img {
    max-width: 150px;
    max-height: 150px;
}
.artist-image-wrapper #drop-zone {
    position: absolute;
    top: 0;
}

.button {
    background-color: #999;
    border-radius: 4px;
    padding: 8px 16px;
}
















#drop-zone {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 500px;
  max-width: 100%;
  height: 200px;
  padding: 1em;
  border: 1px solid #cccccc;
  border-radius: 4px;
  color: slategray;
  cursor: pointer;
}

#file-input {
  display: none;
}

#preview {
  width: 500px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  list-style: none;
  padding: 0;
}

#preview li {
  display: flex;
  align-items: center;
  gap: 0.5em;
  margin: 0;
  width: 100%;
  height: 100px;
}

#preview img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}