﻿@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.0/font/bootstrap-icons.css");

#msgDialog {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.1);
    z-index: 1500;
}

#msgDialogModal {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgb(0, 0, 0, 0.1);
    z-index: 1500;
    border: none;
}

#msgDialogContainer {
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
    box-shadow: 5px 5px 10px 0 rgba(0, 0, 0, 0.5);
    min-width: 500px;
    max-width: 1000px;
}

#msgDialogTitle {
    text-align: left;
}

#msgDialogMsg {
    text-align: left;
}

.msgDialogBtnCenter {
    display: flex;
    justify-content: center;
}

.msgDialogBtnEnd {
    display: flex;
    justify-content: end;
}

#msgDialogBtn > div {
    margin-left: 10px;
}

#msgDialogMsgText{
    width: 100%;
    max-height: 300px;
    overflow: auto;
}