/* Sidebar ve İçerik Düzeni */
.offcanvas-lg { 
    height: 100vh; 
    position: fixed; 
    top: 0; 
    left: 0; 
    z-index: 1050; 
}

.main-wrapper { 
    margin-left: 280px; 
    min-height: 100vh; 
    transition: all 0.3s;
}

/* Nav Link Tasarımı */
.nav-link {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    font-size: 14px;
}

.nav-link i { font-size: 1.2rem; }
.nav-link:hover, .nav-link.active {
    background-color: #f1f5f9;
    color: #2563eb;
}

/* Mobil Alt Bar */
.bottom-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: white;
    height: 70px;
    display: flex;
    justify-content: space-around;
    padding-top: 10px;
    z-index: 1040;
}

.bottom-nav a {
    color: #94a3b8;
    text-decoration: none;
    text-align: center;
    font-size: 11px;
}

.bottom-nav a.active { color: #2563eb; }
.bottom-nav a i { display: block; font-size: 20px; }

/* Mobilde main-wrapper'ı sıfırla */
@media (max-width: 991.98px) {
    .main-wrapper { margin-left: 0; padding-top: 60px; padding-bottom: 80px; }
}

/* terminal */
.btn-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
    border-radius: 12px;
    transition: all 0.2s;
}
.erp-card {
    border: 1px solid #e2e8f0;
    border-radius: 16px;
}
/* terminal */