.modal .progress-line {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    background-color: green;
    width: 100%;
    animation: progress-animation 2s linear forwards;
}



#itemAdded {
    position: relative;
    padding-bottom: 4px; /* Add space for the progress bar */
}
#inCart {
    position: relative;
    padding-bottom: 4px; /* Add space for the progress bar */
}

#itemAdded .progress-line {
    bottom: 0;
}


#inCart .progress-line {
    bottom: 0;
}



@keyframes progress-animation {
    0% {
        width: 100%;
    }
    100% {
        width: 0%;
    }
}
