.fzoone-tab-bar {
    position: fixed;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.fzoone-tab-bar-bottom {
    bottom: 0;
}

.fzoone-tab-bar-top {
    top: 0;
}

.fzoone-tab-bar-inner {
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
}

.fzoone-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #555;
    font-size: 12px;
    flex: 1;
}

.fzoone-tab .dashicons {
    font-size: 24px;
    width: 24px;
    height: 24px;
    margin-bottom: 4px;
}

.fzoone-tab-label {
    text-align: center;
}

/* نمایش فقط در دستگاه‌های موبایل */
@media (max-width: 768px) {
    .fzoone-tab-bar {
        display: block;
    }
    
    /* برای جلوگیری از همپوشانی با محتوا */
    body {
        padding-bottom: 70px;
    }
    
    .fzoone-tab-bar-top + * {
        padding-top: 70px;
    }
}