/* =========================================================
   Sakthi Popup Message – Optimized CSS
   ========================================================= */

/* Overlay */
.popup-message {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* Popup box */
.popup-content {
    background: #fff;
    width: 90%;
    max-width: 480px;
    padding: 20px 20px 60px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,.25);
    animation: popupFade .25s ease-out;
}

/* Title */
.popup-title {
    margin: 0 0 10px;
    font-size: 20px;
}

/* Body */
.popup-body {
    margin-bottom: 15px;
    line-height: 1.5;
}

/* Don't show again */
.popup-dont-show {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 14px;
}

/* Close button */
.popup-close-btn {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 40px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Animation */
@keyframes popupFade {
    from { opacity: 0; transform: scale(.95); }
    to   { opacity: 1; transform: scale(1); }
}
