/* Нижняя навигация */
.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    background-color: #272A3E;
    border-top: 1px solid #555555;
    border-left: none;
    border-right: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    margin-top: auto;
    border-top-left-radius: 50px;
    border-top-right-radius: 50px;
    box-sizing: border-box;
    height: 99px;
    align-items: center;
}

.nav-item {
    color: #9DB2CE;
    text-decoration: none;
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 80px;
}

/* Стили для SVG иконок внутри nav-item */
.nav-item svg {
    width: 26px;
    height: 26px;
    stroke: currentColor;
    transition: stroke 0.3s ease;
    fill: none;
}

/* Стили для SVG активной иконки */
.nav-item.active {
    color: #216322;
    background-color: transparent;
}

.nav-item.active svg {
    stroke: #216322;
}

.nav-item:hover {
    background-color: transparent;
    color: #a7bedd;
}

.nav-item:hover svg {
    stroke: #a7bedd;
}

.nav-item span {
    margin-top: 5px;
    font-size: 12px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    color: #9DB2CE;
}