﻿.confirm-dialog
{
    position: absolute;
    top: 50px;
    left: calc(50% - 250px);
    width: 500px;


    border-style: solid;
    border-width: 1px;
    border-color: lightblue;
    padding: 0px;
    border-radius: 8px;
}
.confirm-header
{
    background-color: darkblue;
    color: white;
    padding: 5px;
    text-align: center;
}

.confirm-content
{
    background-color: white;
    padding: 10px;
    text-align: center;
}
.confirm-footer
{
    background-color: lightgrey;
    text-align: center;
    padding: 5px;
}
