/* Sidebar styles */
.sidebar {
    width: 240px;
    min-height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
    border-right: 1px solid #e5e7eb;
    background: #fff;
}
.sidebar-header {
    font-weight: bold;
    font-size: 1.2rem;
}
.nav-link {
    color: #333;
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 0 20px 20px 0;
    margin-bottom: 2px;
    transition: background 0.2s, color 0.2s;
}
.nav-link.active, .nav-link:hover {
    background: #f0f4f8;
    color: #0d6efd;
}

/* Main content offset */
.flex-grow-1 {
    margin-left: 240px;
    min-height: 100vh;
    background: #f7f8fa;
}

/* KPI Cards */
.kpi-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background: #fff;
    padding: 18px 0;
}

/* Quick Actions */
.quick-action {
    border: none;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    background: #fff;
    padding: 12px 0;
    transition: box-shadow 0.2s;
}
.quick-action:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.card-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .sidebar {
        width: 100%;
        min-height: auto;
        position: static;
        border-right: none;
    }
    .flex-grow-1 {
        margin-left: 0;
    }
} 

/* sa logo & text on the topbar*/
.SA_LOGO{
    height: 50px;
    width: 50px;
}
.SPEC-logo{
    height: 50px;
    width: 70px; 
}
.SA-heading{
    font-family: "Roboto";
    font-size: 30px;
    font-weight: bolder;
}
.SA-subheading{
    font-family: "Roboto";
    font-size: 20px;
    font-weight: bold;
}

/*Inventory logo*/
.inventory-logo{
    height: 250px;
    width: 250px;
}
/*Login page css*/
.login-logo{
    height: 300px;
    width: 300px;
}