#complete-section {
    height: 100%;
}

.complete-main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -50px;
}

.success-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 250px;
}

.button-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 1. Success Circle - Grows with "Back" easing effect */
.report-icon-circle {
    width: 180px;
    height: 180px;
    background-color: #4CAF50;
    /* Green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: circleScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

/* 2. Check Mark - Drawing Effect */
.check-mark {
    /* A dasharray of 30 is usually enough for a standard 24x24 checkmark */
    stroke-dasharray: 30;
    stroke-dashoffset: 30;
    animation: drawCheck 0.8s ease-out 0.2s forwards;
}

/* 3. Glow Ring - Pulsing Effect */
.glow-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: rgba(76, 175, 80, 0.4);
    z-index: 1;
    animation: glowPulse 1s ease-out forwards;
}

/* --- ANIMATIONS --- */

@keyframes circleScale {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes drawCheck {
    0% {
        stroke-dashoffset: 30;
    }

    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes glowPulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

.complete-module {
    padding: 10px;
    width: 100%;
}

.complete-title {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 18px;
}

.complete-description {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 14px;
}

.report-id {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    color: #a0a0a0;
    font-size: 13px;
}

.nav-done-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 10000;
    width: 100%;
}

.done-complete-btn {
    background-color: #EB4E3E;
    width: 200px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: bold;
    font-size: 15px;
    border-radius: 30px;
}

.done-complete-btn:hover {
    background-color: #ffff;
    color: #EB4E3E;
    border: #EB4E3E 1px solid;
}