﻿.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.popup-box {
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    width: 560px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0,0,0,0.3);
    animation: fadeIn .4s ease-in-out;
}

.popup-close {
    background: #d9534f;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 6px;
    margin-top: 15px;
    cursor: pointer;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
p {
    display: contents;
    direction: ltr;
    font-weight: 700;
}
h3 {
    line-height: 1.5;
}