#nav-container {
    position: fixed;
    bottom: 5%;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

.nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    pointer-events: all;
}


.navbar,
.theme-bar {
    display: flex;
    align-items: center;
    background-color: var(--color-secondary);
    border-radius: 2.5rem;
    border: 0.1rem solid black;
    padding: 0.25rem;
}

.navbar-btn,
.theme-btn {
    background: none;
    border: none;
    cursor: pointer;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.2s ease, background-color 0.4s ease-in-out;
    margin: 0.15rem 0.25rem;
    padding: 1.5rem;
}

.active-btn {
    background-color: var(--color-primary);
    border: 0.1rem solid black;
}

.navbar-btn:active,
.theme-btn:active {
    transform: translateY(-3px);
}

.navbar-btn i,
.theme-btn i {
    font-size: 1.4rem;
    color: var(--color-bg);
}

@media (max-width: 768px) {
    .nav-wrapper {
        gap: 1rem;
    }

    .navbar-btn,
    .theme-btn {
        width: 2rem;
        height: 2rem;
        padding: 1rem;
    }
}
