.submit-footer {
    box-sizing: border-box;
    margin-top: 1.25rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    margin-bottom: 0.625rem;
}

.submit-footer button {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
    background-color: var(--primary-color);
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
}

.submit-footer button:active {
    transform: scale(0.98);
}

.bottom-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    display: flex;
    box-shadow: 0 -0.125rem 0.625rem rgba(0, 0, 0, 0.1);
    z-index: 100;
}

.bottom-menu .menu-item {
    flex: 1;
}

.bottom-menu .menu-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 0.4rem;
    padding-bottom: 0.2rem;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.2s;
}

.bottom-menu .menu-link.active {
    color: var(--primary-color);
}

.bottom-menu .menu-icon {
    font-size: 1.25rem;
    margin-bottom: 0.125rem;
}

.bottom-menu .menu-text {
    font-size: 1rem;
}

.content-bottom-spacing {
    height: 5rem;
}


.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.loading-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: var(--white);
    border-radius: 0.5rem;
}

.loading-spinner {
    width: 1.5rem;
    height: 1.5rem;
    border: 0.125rem solid #f3f3f3;
    border-top: 0.125rem solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 0.75rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-text {
    font-size: var(--base-size);
    color: var(--text-light);
}

