/* YONETİO360 - Mobil Öncelikli Tasarım */

.mobile-bottom-nav {
    display: none;
}

@media (max-width: 991.98px) {
    :root {
        --y-sidebar-width: 0px;
    }

    .app-sidebar {
        position: fixed;
        top: 0;
        left: -280px;
        width: 280px;
        height: 100vh;
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.3);
    }

    .app-sidebar.show {
        left: 0;
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .sidebar-overlay.show {
        display: block;
    }

    .app-content {
        padding: 1rem;
        padding-bottom: 5rem; /* Space for bottom nav */
    }

    /* Mobile Bottom Navigation Bar */
    .mobile-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        height: 62px;
        background: #ffffff;
        border-top: 1px solid #e2e8f0;
        z-index: 1050;
        justify-content: space-around;
        align-items: center;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: #64748b;
        font-size: 0.72rem;
        font-weight: 600;
        gap: 3px;
        padding: 4px 8px;
    }

    .mobile-nav-item.active {
        color: #1e3a8a;
    }

    .mobile-nav-item i {
        font-size: 1.25rem;
    }

    .mobile-action-fab {
        position: fixed;
        bottom: 74px;
        right: 18px;
        width: 54px;
        height: 54px;
        border-radius: 50%;
        background: #10b981;
        color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
        z-index: 1040;
        text-decoration: none;
    }

    .mobile-action-fab:hover {
        color: #ffffff;
        background: #059669;
    }
}
