.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1001;
    display: block;
}

.no-scroll{
    overflow: hidden;
    height: 100%;
}


.modal-container {
    position: fixed;
    max-width: 50rem;
    height: auto;
    max-height: 85%;
    padding: 10px 20px;
    background: var(--Color-Neutre-background_1);
    border-radius: 4px;
    border: 2px solid #dddddd;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    z-index: 1002;
    min-width: 305px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    .title-label {
        text-align: left;
    }

    .hidden {
        display: none;
    }
}

.modal-title {
    color: #1a2341;
    font-size: 28px;
    font-weight: 700;
    word-wrap: break-word;
}

.modal-action {
    display: flex;
    gap: 0.5rem;
    margin: 0 auto;
}

.atp-modal-content{
    border: none;
    background-color: inherit;
    box-shadow: none;
    overflow: auto;
}