.mpd-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.mpd-modal {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 10px;
    width: 400px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    padding: 20px;
}

.mpd-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.mpd-modal-icon-ok, .mpd-modal-icon-bd {
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: -50px;
}

.mpd-modal-icon-ok {
    border: solid 5px rgba(76, 175, 80, 1);
}

.mpd-modal-icon-bd {
    border: solid 5px rgba(244, 67, 54, 1);
}

.mpd-icon-ok, .mpd-icon-bd {
    font-size: 20px;
}

.mpd-icon-ok {
    color: rgba(76, 175, 80, 1);
}

.mpd-icon-bd {
    color: rgba(244, 67, 54, 1);
}




.mpd-close-button {
    position: absolute;
    top: -15px;
    right: -10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: rgba(230, 0, 10, 1);
    font-weight: 600;
}

    .mpd-close-button .fa-xmark {
        font-size: 20px;
    }

.mpd-modal-title {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
    color: rgba(0, 0, 0, 1);
}

.mpd-modal-description {
    text-align: center;
    color: rgba(119, 119, 119, 1);
    font-size: 14px;
    padding-bottom: 50px;
}

.mpd-modal-footer {
    display: flex;
    justify-content: space-around;
}

.mpd-button {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

.mpd-button-action1 {
    background-color: rgba(244, 67, 54, 1);
    color: white;
}

    .mpd-button-action1:hover, .mpd-button-action2:hover {
        background-color: rgba(119, 119, 119, 1);
        color: white;
    }



.mpd-button-action2 {
    background-color: rgba(76, 175, 80, 1);
    color: white;
}

.mpd-modal::after {
    content: "";
    background: url('https://cdn.haif.app/UI/img/logosHaif/icono/png/color.png') no-repeat center center;
    background-size: contain;
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
}
