/* progress.css */

/* Container für die Fortschrittsanzeige und den Zähler */
#progress-container {
    width: 100%;
    margin-bottom: 20px;
}

/* Fortschrittsbalken */
#progress-bar {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 25px;
    height: 10px;
    position: relative;
}

#progress-bar-inner {
    height: 100%;
    width: 0%;
    background-color: #FFC0cb; /* Grün für den Fortschritt */
    transition: width 0.4s ease;
    border-radius: 5px;
}

/* Zähleranzeige */
#progress-counter {
    text-align: center;
    margin-top: 5px;
    font-size: 16px;
    color: #333;
}

/* Grüner Haken nach Abschluss */
#progress-complete {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%) scale(0);
    color: green;
    font-size: 28px;
    font-weight: bold;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
}

#progress-complete.visible {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Responsive Anpassungen */
@media screen and (max-width: 756px) {
    #progress-container {
        margin-bottom: 15px;
    }

    #progress-counter {
        font-size: 14px;
    }

    #progress-bar {
        height: 15px;
    }
}
