/* Your custom styles for Bootbox alerts */
.error-bootbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: -300px;
}

    .error-bootbox .modal-header {
        background-color: #de4343;
        color: white;
    }

    .error-bootbox .modal-title {
        font-size: 22px;
        font-weight: normal;
    }

    .error-bootbox .modal-body {
        padding: 20px;
        font-family: sans-serif;
        color: #444;
        font-size: 14px;
    }


.success-bootbox {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin-top: -300px;
}

    .success-bootbox .modal-header {
        background-color: #61b832;
        color: white;
    }

    .success-bootbox .modal-title {
        font-size: 22px;
        font-weight: normal;
    }

    .success-bootbox .modal-body {
        padding: 20px;
        font-family: sans-serif;
        color: #444;
        font-size: 14px;
    }

.bootboxOKBtn {
    background-color: #fcfcfc;
    border-color: #c9c9c9;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08);
}

.modal-header .close {
    display: none;
}

.modal-header .modal-title {
    margin-left: 0;
}
