/* =========================================================
   admin-panel.css
   استایل پایه برای لایه‌ی داشبورد (BusinessLayout)
   ========================================================= */

/* پوسته کلی */
.app-shell {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

/* سایدبار (فقط دسکتاپ) */
.app-sidebar {
    width: 260px;
    flex-shrink: 0;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 1rem;
}

/* محتوای اصلی داشبورد */
.app-main {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 1.5rem;
    flex-grow: 1;
}

/* لینک‌های منو */
.role-menu .nav-link {
    color: #333;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    transition: all 0.2s ease-in-out;
}

    .role-menu .nav-link:hover {
        background: #f0f0f0;
    }

    .role-menu .nav-link.active {
        background: #007bff;
        color: #fff !important;
    }

/* برای موبایل */
@media (max-width: 991px) {
    .app-shell {
        flex-direction: column;
    }

    .app-sidebar {
        display: none;
    }

    .app-main {
        width: 100%;
    }
}
