.cn-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cn-modal-box {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 18px 40px rgba(0,0,0,0.45);
    direction: rtl;
}
.cn-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.cn-modal-title {
    font-size: 18px;
    font-weight: 700;
}
.cn-modal-close {
    background: transparent;
    border: none;
    font-size: 22px;
    cursor: pointer;
}
.cn-modal-footer {
    margin-top: 15px;
    text-align: left;
}
.cn-modal-btn-close {
    background: #6A00FF;
    color: #FFF;
    border: none;
    padding: 8px 18px;
    border-radius: 6px;
    cursor: pointer;
}
