/*===========================================================================================*\
            This is the styling for the landing and modals
\*===========================================================================================*/

.active-button {
    background-color: #4f46e5;
    color: white;
    border-radius: 50%;
}

.modal-content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.modal-content.active {
    opacity: 1;
}

.progress {
    position: absolute;
    height: 100%;
    background-color: #db2777;
    border-radius: inherit; /* Makes the progress bar rounded */
    transition: width 0.3s ease; /* Smooth transition for width */
}