﻿.dialog-blur-bg {
    opacity: 70%;
    backdrop-filter: blur(5px);
    background-color: black;
}

.dialog-transparent-bg {
    opacity: 5%;
    background-color: black;
    pointer-events: none !important;
}

.dialog-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.dialog-icon {
    margin-top: 20px;
    margin-bottom: 20px;
}

.dialog-title,
.dialog-message {
    text-align: center;
    letter-spacing: 0px;
    color: black;
}

.dialog-title {
    margin-bottom: 10px;
    font-size: 34px;
    font-weight: bold;
}

.dialog-message {
    margin-bottom: 20px;
    font-size: 20px;
}

.dialog-action-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dialog-movable {
    position: absolute;
    overflow: auto;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

    .dialog-movable .mud-dialog-container {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .dialog-movable .mud-dialog-content {
        flex: 1;
        overflow-y: auto;
    }

    .dialog-movable .mud-dialog-title {
        cursor: move;
        user-select: none;
        background-color: #275da7;
        color: white;
    }

    .dialog-movable.dialog-success .mud-dialog-title {
        background-color: #65d378;
    }

    .dialog-movable.dialog-warning .mud-dialog-title {
        background-color: #d59d38;
    }

    .dialog-movable.dialog-error .mud-dialog-title {
        background-color: #eb5b54;
    }
