﻿* {
    box-sizing: border-box;
}

.lblModalSuccessMessage {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: 17px;
}

.lblModalHeaderMessage {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 22px;
    color:green;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: #f4f6f9;
}


/* Modal Background */
.modal_New {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding-top:120px;
}

/* Modal Box */
.modal-content_New {
    position: relative;
    width: 400px;
    max-width: 90%;
    padding: 40px 30px;
    text-align: center;
    background: white;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    animation: modalShow 0.4s ease;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 15px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #777;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}

    .close-btn:hover {
        color: #222;
        font-family: 'Poppins', sans-serif;
    }

/* Success Icon */
.success-icon {
    width: 85px;
    height: 85px;
    margin: 0 auto 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: #28a745;
    color: white;
    font-size: 48px;
    font-weight: bold;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.35);
    animation: iconPop 0.5s ease;
}

/* Heading */
.modal-content_New h2 {
    margin: 0 0 12px;
    color: #222;
    font-size: 28px;
}

/* Message */
.modal-content p {
    margin: 0 0 25px;
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

/* Continue Button */
.continue-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    background: #28a745;
    color: white;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
}

    .continue-btn:hover {
        background: #218838;
        transform: translateY(-2px);
    }

/* Animations */
@keyframes modalShow {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(0);
    }

    70% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}
