body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    padding: 0;
    display: flex;
    height: 100vh;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f4f4f4 !important;
}

#canvas {
    margin: 0;
    padding: 0;
    width: 100%;
    background-color: #ffffff9d !important;
    height: 100%;
    flex: 2;
    overflow-y: auto;
}

#background-text {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(0, 0, 0, 0.5);
}
#fileView{
    position: absolute;
    bottom: 31vh;
    right: 1vh;
    color: rgba(0, 0, 0, 0.5);
}

.dmn-js-parent {
    height: 5000px !important;
}

button {
    background-color: #4d90fe !important;
    width: 150px !important;
    margin: 10px!important;
    color: white;
    padding: 10px 20px !important;
    font-size: 16px !important;
    border: none !important;
    border-radius: 5px !important;
    cursor: pointer !important;
}

button:hover {
    background-color: #357ae8 !important;
}

#zonesFichiers {
    display: flex;
    flex-direction: row;
    flex: 1;
    width: 100%;
    height: auto;
}

#zoneDMN,
#zoneJSON {
    flex: 1;
    width: 100%;
    height: auto;
    margin: 5px;
    display: flex;
    flex-direction: column;
}

section header {
    display: flex;
    padding-left: 30px;
}

section header h6 {
    margin: 5px;
    margin-right: 5px;
}

#nameFileDMN,
#nameFileJSON {
    font-weight: 100;
}

input[type="file"] {
    border: 1px solid rgba(115, 115, 115, 0.3); 
    border-radius: 5px;
    background-color: #e0e0e0;
    cursor: pointer;
    font-size: medium;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 30px;
    padding-bottom: 10px;
    width: auto;
    height: 100%;
    align-items: center;
    text-align: center;
    transition-duration: 200ms;
    border: 1px solid rgb(200, 200, 200);
}

input[type="file"]::before {
    content: "Glisser et déposer ici...";
    display: block;
    padding-bottom: 30px;
    font-size: small;
    margin-bottom: 10px;
    text-align: center;
}

input[type="file"]:focus-within,
input[type="file"]:hover {
    background-color: #d5d5d5;
    border: 1px solid rgb(100, 100, 100);
    transition-duration: 200ms;
}

section footer {
    display: flex;
    padding-left: 30px;
}

section footer p {
    font-weight: 200;
    margin: 2px;
    margin-right: 5px;
    font-size: small;
}

#btnConfig {
    width: auto;
    height: auto;
    margin: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
