.prompt-parent > dialog {
    background-color: #fff;
    border: 3px solid #ffdaa9;
    border-radius: 8px;
    padding: 1.5rem;
    width: 400px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.prompt-parent > dialog::backdrop {
    background-color: rgba(0, 0, 0, 0.6);
}

.prompt-body {
    margin-bottom: 1.5rem;
}

.prompt-body p {
    font-family: 'Rubik', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.prompt-input {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccd3d9;
    border-radius: 4px;
}

.prompt-buttons {
    text-align: right;
}

.prompt-buttons .btn {
    font-family: 'Rubik', sans-serif;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease-in-out;
    border: none;
    cursor: pointer;
}

.prompt-buttons .btn-ok {
    background-color: #28a745;
    color: white;
    margin-left: 0.5rem;
}

.prompt-buttons .btn-ok:hover {
    background-color: #218838;
}

.prompt-buttons .btn-cancel {
    background-color: #6c757d;
    color: white;
}

.prompt-buttons .btn-cancel:hover {
    background-color: #5a6268;
}
