
#VIPoverlay,#Boardoverlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

/* استایل پاپاپ */
#vip-popup ,#Board-popup{
    display: none; /* مخفی بودن در ابتدا */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
}

/* استایل فیلد ورود و دکمه */
#vip-popup input,#Board-popup input {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
}

#vip-popup button ,#Board-popup button{
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

#vip-popup button:hover,#Board-popup button:hover {
    background: #0056b3;
}

/* پیام خطا */
#error-msg,#Boarderror-msg  {
    color: red;
    text-align: center;
    display: none;
    margin-top: 10px;
}

