/* TEXO App - Bottom Navigation Styles */

.texo-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #ff5100;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1000;
    display: flex;
    align-items: center;
}

.texo-bottom-nav a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.texo-bottom-nav a:hover {
    background: rgba(255, 255, 255, 0.05);
}

.texo-bottom-nav a.active {
    background: rgba(255, 255, 255, 0.1);
}

.texo-bottom-nav img {
    width: 42px;
    height: auto;
}
