﻿@import url('frontend_tokens.css');
.app-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 300;
    height: calc(56px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    background: #fff;
    border-top: 1px solid var(--fe-border-light);
    display: flex;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.06);
}
.app-tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--fe-text-secondary);
    font-size: 11px;
    gap: 2px;
}
.app-tab-item i {
    font-size: 20px;
    line-height: 1;
}
.app-tab-item.active {
    color: var(--fe-primary);
}

body.has-app-tabbar {
    padding-bottom: calc(56px + env(safe-area-inset-bottom));
}
