.section-table {
    margin-bottom: 0;
}

.form-id {
    width: 201.5px;
}

.form-max-width {
    width: 340px;
}

.worker-info {
    flex-basis: 590px;
}

.image-box {
    margin-left: 10px;
    flex-grow: 1;
}

.form-job-id {
    width: 235px;
}

.btn-cancel {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-save {
    width: 164px;
    height: 36px;
}

.custom-file-upload {
    border: 1px solid #ccc;
    width: 134px;
    height: 36px;
    border-radius: 5px;
    margin: 14px 0;
    font-family: 'IBMPlexSansThai 700';
    font-size: 14px;
    line-height: 23px;
}

.custom-file-upload-text {
    font-size: 14px;
    line-height: 23px;
    color: #9095A2
}

/* drop zone */
.drop-zone {
    max-width: 347px;
    height: 253px;
    text-align: center;
    cursor: pointer;
    border: 2px dashed #9095A2;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    position: relative;
}

.drop-zone__prompt {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drop-zone--over {
    border-style: solid;
}

.drop-zone__input {
    display: none;
}

.drop-zone__thumb {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    background-color: #cccccc;
    background-size: cover;
    position: relative;
}

.drop-zone__thumb::after {
    content: attr(data-label);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.75);
    font-size: 14px;
    text-align: center;
}

.invalid-upload-file {
    position: absolute;
    bottom: 0;
}