.rihlatk-notify {
    position: fixed;
    inset: 0;
    z-index: 2000002;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-family: Cairo, "Noto Naskh Arabic", Tahoma, sans-serif;
}
.rihlatk-notify[hidden] {
    display: none !important;
}
.rihlatk-notify__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(4px);
}
.rihlatk-notify__card {
    position: relative;
    width: min(420px, 100%);
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
    padding: 22px 22px 18px;
    text-align: start;
}
.rihlatk-notify__icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: #eff6ff;
    color: #1a78e5;
}
.rihlatk-notify--error .rihlatk-notify__icon {
    background: #fef2f2;
    color: #dc2626;
}
.rihlatk-notify--success .rihlatk-notify__icon {
    background: #ecfdf5;
    color: #059669;
}
.rihlatk-notify--confirm .rihlatk-notify__icon {
    background: #fff7ed;
    color: #c2410c;
}
.rihlatk-notify__msg {
    margin: 0;
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.7;
    white-space: pre-wrap;
    word-break: break-word;
}
.rihlatk-notify__actions {
    display: flex;
    gap: 8px;
    margin-top: 18px;
    justify-content: flex-end;
}
[dir="rtl"] .rihlatk-notify__actions {
    flex-direction: row-reverse;
    justify-content: flex-start;
}
.rihlatk-notify__btn {
    border: 0;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    font-family: inherit;
}
.rihlatk-notify__ok {
    background: #1a78e5;
    color: #fff;
}
.rihlatk-notify__ok:hover {
    background: #155fb5;
}
.rihlatk-notify--error .rihlatk-notify__ok {
    background: #dc2626;
}
.rihlatk-notify--error .rihlatk-notify__ok:hover {
    background: #b91c1c;
}
.rihlatk-notify--success .rihlatk-notify__ok {
    background: #059669;
}
.rihlatk-notify--success .rihlatk-notify__ok:hover {
    background: #047857;
}
.rihlatk-notify__cancel {
    background: #f3f4f6;
    color: #374151;
}
.rihlatk-notify__cancel:hover {
    background: #e5e7eb;
}
.rihlatk-notify__cancel[hidden] {
    display: none !important;
}
html.rihlatk-notify-lock,
html.rihlatk-notify-lock body {
    overflow: hidden !important;
}
