
dialog {
    border-radius: 8px;
    border: none;
    color: #333333;
}
dialog::backdrop {
    background: rgb(23 39 55 / 70%) !important;
}
dialog .dialog-content {
    position: relative;
}
dialog .dialog-content .btn-close {
    position: absolute;
    right: 0;
    top: 0;
}
dialog .dialog-content .dialog-header {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
dialog .dialog-content .dialog-header span {
    display: flex;
    background: rgb(255 0 0 / 15%);
    padding: 5px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    color: #f75858;
}
dialog .dialog-content .dialog-header span svg {
    width: 24px;
}
dialog .dialog-content .dialog-header h3 {
    font-size: 1.25rem;
    margin: 0;
}
dialog .dialog-content .dialog-body {
    margin-bottom: 1.5rem;
}
dialog .dialog-content .dialog-body p {
    margin-bottom: 1rem;
}
dialog .dialog-content .dialog-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}