﻿.standard-modal {
    display: grid;
    grid-template-rows: 40px 1fr 40px;
    box-sizing: border-box;
}

.standard-modal-header {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to right, #1f578a, #1f578a, #1f578a, #3472ab);
    color: white;
}

.standard-modal-title {
    cursor: default;
    padding: 0px 8px;
    align-content: center;
}

.standard-modal-close {
    height: 40px;
    width: 40px;
    display: flex;
    justify-content: center;
    background-color:none;
    cursor:pointer;
}

    .standard-modal-close:hover {
        background-color: #c53838;
    }

    .standard-modal-close:active {
        background-color: #eb2907;
    }

        .standard-modal-close:hover > i {
            color:white !important;
        }

        .standard-modal-close > i {
            align-content: center;
        }

.standard-modal-body {
    padding: 8px;
}

.standard-modal-footer {
    background-color: lightgray;
    display:flex;
    align-items:center;
    gap:5px;
    justify-content:flex-end;
    padding-right:5px;
}

.standard-modal-footer button {
    min-width:80px;
}

.modal-title > span { 
    padding-right: 8px;
}