.button-nav-container {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
    background: #fff;
    padding: 1rem 2rem;
}

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

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

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