/* Modifying existing styling dropzone elements */
#auditfile-dropzone {
    background-color: var(--bg_dropzonecolor);
    outline: 2px dashed grey;
    outline-offset: -15px;
    border: none;
    max-width: 300px;
    display: block;
    margin: 0 auto 20px;
}

.dropzone .dz-preview.dz-file-preview .dz-image { /* Center the grey block after a file is uploaded */
    margin: auto;
    display: inherit;
}

.dropzone .dz-preview {
    display: inherit !important; /* Center the elements inside the grey block after a file is uploaded */
}

.dz-remove {
    color: black;
    margin-top: 5px;
}
/* end of block */

#upload_icon {
    width: 75px;
    display: block;
    margin: auto;
    pointer-events: none;
}

label {
    color: var(--label_color);
    font-weight: 600;
}

.gray_label_text {
    color: var(--label_grey_color);
}

input, select {
    display: block;
    padding: 5px 10px;
    margin: 5px 0 20px;
    width: 150px;
    cursor: pointer;
    font-size: 1em;
}

input {
    box-sizing: border-box;
}

input::placeholder {
    color: var(--label_grey_color);
}

hr {
    border-top: 1px solid var(--border_color);
}

.full_width {
    width: 100%;
}

.button {
    background-color: var(--button_color);
    border: 1px solid var(--button_color);
    border-radius: 5px;
    color: white;
    font-weight: 600;
    font-size: 1em;
    width: min-content;
    height: min-content;
    margin: 0;
    padding: 7.5px 20px;
    cursor: pointer;
    text-decoration: none;
}

#button_submit:hover {
    background-color: var(--button_color_hover);
}

#button_submit:disabled {
    background: #DDDDDD;
    cursor: default;
    border-color: #DDDDDD;
}

#button_reset {
    background-color: white;
    color: var(--button_color);
}

#button_reset:hover {
    background-color: #fafafa;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 360px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}