.button-nav-container {
    display: flex;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 1rem 2rem;
}

.botbar-nav-container-button {
    display: flex;
    flex-direction: row;
    justify-content: center;
    padding: .75rem 1rem;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: var(--primary-color);
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.botbar-nav-container-button:hover {
    background-color: var( --darker-primary-color);;
}

.forward-svg {
    width: 25px;
    height: 25px;
    color: #fff;
}

/* The actual progress bar */
.progress-bar {
    height: 20px;
    width: 0%; /* Set this dynamically for different progress values */
    background-color: #4caf50;
    text-align: center;
    color: white;
    font-size: 12px;
    line-height: 20px; /* Matches the height for vertical centering */
    transition: width 0.3s ease;
}

/* Container for the progress bar */
.progress-container {
    width: 100%;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar-container {
    display: none;
    width: 100%;
    max-width: 400px;
    gap: 5px;
}

@media (min-width: 768px) {
    .progress-bar-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.progress-bar-text-container {
    color: #71717a;
}