#mduc_container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    display: none;
}

#mduc_overlay {
    background-color: #0000004d;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mduc-modal {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--Color-Neutre-background_1, #f6f6f6);
    z-index: 1;
    padding: 20px;
    margin: 20px;
    border-radius: 4px;
    border: 1px solid #dddddd;
    max-width: 800px;
}

.mduc-title-div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

#mduc_title {
    font-weight: bold;
    font-size: 28px;
    color: var(--Color-Primary-dark_blue, #1a2341);
}

#mduc_subtitle {
    font-size: 14px;
    color: var(--Color-text-black-text, #333334);
}

.mduc-content-div {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: fit-content;
}

#mduc_input {
    width: 300px;
}

.mduc-btns-div {
    display: flex;
    justify-content: end;
    gap: 8px;
    align-items: center;
}

.mduc-desc {
    font-style: italic;
}
