﻿.ModalPopupMessageBox {
    background-color: white;
    text-align: center;
    margin: 10px;
    padding: 20px;
    border-color:black;
    border-radius: 10px;
    font-family:'Segoe UI';
    width:500px;
}

.Header{
    color:white;
    font-size:x-large;
    height:30px;
}

.MessageBoxIcon{
    font-family:'Wingdings 2';
    font-size: 72pt;
    width:20%;
}

.MessageBox{
    width:80%;
    font-size:medium;
    text-align:left;
}

.ModalPopupMessageBoxBackground {
    background-color: lightgrey;
    opacity: 0.8;
}

.MessageBoxButton {
    height: 30px;
    color: white;
    background-color: dodgerblue;
    text-wrap: normal;
}

.MessageBoxButton:hover {
    background-color: aliceblue;
    color: dodgerblue;
}

.MessageBoxButton:active {
    box-shadow: 0 2px #666;
    transform: translateY(1px);
}