
.prompt-modal {
    --TEXT-COLOR: #fff;
    --BG-COLOR: #37474f;
    display: flex;
    position: fixed;
    overflow: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: brightness(0.5) blur(3px);
}

.prompt-form {
    position: relative;
    min-width: 300px;
    max-width: 94%;
    margin: auto;
    padding: 10px;
    border: none;
    border-radius: 6px;
    outline: none;
    color: var(--TEXT-COLOR);
    background-color: var(--BG-COLOR);
}

.prompt-close {
    display: inline-block;
    position: absolute;
    height: 30px;
    width: 30px;
    padding: 4px;
    top: -10px;
    right: -10px;
    border-radius: 50%;
    line-height: 1;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: #212121;
    cursor: pointer;
}

.prompt-description {
    margin-top: 10px;
    max-width: 400px;
    min-width: 200px;
    font-size: larger;
}

.prompt-action-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

/* RTL Rules */

[dir = 'rtl'] .prompt-close {
    right: auto;
    left: -10px;
}