.message-layout {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.5);
    left: 0px;
    top: 0px;
    
}

.message-box {
    height: auto;
    min-height: 80px;
    width: 400px;
    margin: 50px auto;
    background-color: white;
    box-shadow:  0 0 10px rgba(0,0,0,0.5);
}

.message-box-max {
    height: auto;
    min-height: 80px;
    width: 1000px;
    margin: 50px auto;
    background-color: white;
    box-shadow:  0 0 10px rgba(0,0,0,0.5);
}



.message-caption {
    height: auto;
    padding: 8px;
    text-align: center;
    color: white;
    background-color: rgba(0, 28, 81, 0.5);
}

.message-body {
    text-align: center;
    color: rgb(45, 45, 73);
    padding: 8px;
    min-height: 80px;
}

.message-buttons {
    padding: 8px;
    text-align: right;
    
}

.message-buttons button {
    padding: 8px;
    text-align: center;
    width: 100px;
    margin-right: 12px;
    
}


.message-body a {
    color: rgb(24, 23, 58);
    text-decoration: underline;
}