.mpft-notification-body {
    position: fixed;
    top: 5.625rem;
    right: 1rem;
    z-index: 1500;
    box-shadow: 0px 0.5rem 1rem rgba(0, 0, 0, 0.14),
    0px 0px 2px rgba(0, 0, 0, 0.12);
    border-radius: 0.75rem;
    width: auto;
    max-width: calc(100vw - 32px);
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    box-sizing: border-box;
    gap: 1rem;
    text-align: left;
    font-size: 0.93rem;
    overflow-wrap: break-word;
    word-break: break-word;
    overflow-y: auto;
}


.mpft-close-button {
    text-decoration: underline;
    cursor: pointer;
}

.mpft-notification-body-error {
    color: var(--Color-State-error);
    background-color: var(--Color-State-errorbg);
    border: 1px solid var(--Color-State-error);
}

.mpft-notification-body-error img {
    filter: invert(17%) sepia(91%) saturate(7485%) hue-rotate(358deg)
    brightness(85%) contrast(108%);
}

.mpft-notification-body-success {
    color: var(--Color-State-success);
    background-color: var(--Color-State-successbg);
    border: 1px solid var(--Color-State-success);
}

.mpft-notification-body-neutre {
    color: var(--Color-Neutre-DS_dark_grey);
    background-color: var(--Color-Neutre-white);
    border: 1px solid var(--Color-Neutre-DS_dark_grey);
}

 .mpft-loading-spinner {
     width: auto;
     height: auto;
     border: 6px solid #f3f3f3;
     border-top: 6px solid #3498db;
     border-radius: 50%;
     animation: mpft-spin 1s linear infinite;
 }

@keyframes mpft-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
