.alert-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    direction: rtl;
    font-family: inherit;
}

.alert-box {
    background: #ffffff;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    min-width: 300px;
    max-width: 400px;
    padding: 24px 20px 20px;
    text-align: center;
    animation: alertPop 0.2s ease-out;
}

@keyframes alertPop {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.alert-message {
    font-size: 14px;
    line-height: 1.8;
    color: #1e1e1e;
    margin-bottom: 20px;
    word-wrap: break-word;
    font-weight: 400;
}

.alert-button {
    background-color: #3C387D;
    color: #fff;
    border: none;
    padding: 8px 30px;
    border-radius: 130px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s;
    font-family: inherit;
    font-weight: 500;
    
}


.alert-button:hover {
    background-color: #4111A6;
}