:root {
    --white: #FFFFFF;
    --black-primary: #222222;
    --blue-primary: #313FA0;
    --navbar-bg: #313FA0;
}

.navbar__wrapper {
    width: 100%;
}

.navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navbar-bg);
    padding: 10px 0;
    z-index: 100;
    box-shadow: 0 -4px 20px rgba(49, 63, 160, 0.3);
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.navbar__list {
    display: flex;
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 0 10px;
    list-style: none;
    gap: 8px;
    justify-content: center;
}

.navbar__item {
    flex: 1 1 auto;
    max-width: 75px;
    width: 100%;

    position: relative;
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 6px 2px;
    transition: transform 0.2s ease, background-color 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.navbar__item:active {
    transform: scale(0.95);
    opacity: 0.9;
}

.navbar__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--blue-primary);
}

.navbar__icon {
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar__icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: currentColor;
}

.navbar__title {
    font-size: 10px;
    font-weight: 600;
    margin: 0;
    line-height: 1.1;
}

.link--absolute {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}