.imghold {
    margin-top: 30px ;
    text-align: center;
    /*background-color: #f8f8ff;*/
    /*width: 100%;*/
    min-height: 400px;
    /*display: block;*/
    position: relative;
    /*border: 1px solid #c5c8e9;*/
    border-radius: 3px;
}

#imageCanvas {

    max-width: 100%;
    max-height: 82%;
    z-index: 1000;
    cursor: crosshair;
}


#paintColor{
    width: 30%;
}

#drop-zone {
    position: fixed;
    top: 20px;
    right: 20px;
    bottom: 20px;
    left: 20px;
    border-radius: 20px;
    background: rgba(204, 204, 204, 0.9);
    z-index: 10;
    transition: opacity 0.2s;
}
body:not(.dragging) #drop-zone {
    pointer-events: none;
    opacity: 0;
}

#topBar {
  width: 100%;
  border: 1px solid #c5c8e9;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-radius: 3px;
}

.topBarDiv {
  width: 100%;
  height: 100%;
  padding: 5px 0;
  border-left: 1px solid #c5c8e9;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 8vh;
  padding: 0;
}

.topBarDiv:first-of-type {
  border-left: 0;
}

.brush-box {
  padding: 0 15px;
}


#paintForm {
    margin: 10px 0;
}

#exifInformationHolder {
    padding: 20px;
    border: 1px solid #c5c8e9;
    position: absolute;
    left: 0;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    max-width: 70%;
    max-width: 600px;
    max-height: 85%;
    background-color: white;
    display: none;
    z-index: 2;

    position: absolute;
    top: 55%;
    transform: translateY(-50%);
    max-height: 88%;
}

#imageScrubberInfo {
    position: relative;
    top: 10px;
    right: 0;
    margin-right: auto;
    margin-left: auto;
    padding: 10px;
    width: 80%;
    max-width: 600px;
    max-height: 88%;
    display: block;
    z-index: 3;
    overflow: auto;
    box-sizing: border-box;
}

#imageScrubberInfo a:hover,
#imageScrubberInfo a:focus {
    background: #ff0;
}

@media (max-width: 800px) {
    #imageScrubberInfo {
        max-height: 75%;
    }

    #topBar {
        grid-template-columns: repeat(3, 1fr);
    }

    .topBarDiv {
        border: none;
    }

    #imageCanvas {
        position: absolute;
        top: 60%;
        max-height: 75%;
    }

    #continueButtonExif {
        position: absolute;
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%) translateY(-50%);
    }
}

#exifScrollDiv {
    position: inline-block;
    height: auto;
    max-height: 25vh;
    overflow-y: auto;
}

#exifScrollDiv code {
    display: block;
    margin: 10px 0;
    color: red;
}

#tempCanvas {
    position: absolute;
    top: -1000px;
    display: none;
}

#holderCanvas {
    position: absolute;
    top: -1000px;
    display: none;
}

#rotationCanvas {
    position: absolute;
    top: -1000px;
    display: none;
}

#blurredCanvas {
    position: absolute;
    top: -1000px;
    display: none;
}

#offscreenCanvas {
    position: absolute;
    top: -1000px;
    display: none;
}

#about {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
}


#continueButton,
#continueButtonExif {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}

input[type='file'] {
    display: none;
}

.file-open {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 6px 12px;
    cursor: pointer;
}

/* The slider itself */
.slider {
    width: 90%;
}


.controlButton {
    cursor: pointer;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.controlButton:hover,
.controlButton:focus {
    background: #f5f6ff;
}

.customFileOpen {
    cursor: copy;
}
