body {
    overflow-x: hidden;
    margin: 0; /* Reset body margin */
    padding: 0; /* Reset body padding */
}

/* right hand content */
#wrapper {
    display: flex;
	background-color: white;
}

#sidebar-wrapper {
    min-height: 100vh;
    width: 250px;
    background-color: blue;
    border-right: 1px solid #dee2e6;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transform: translateX(-250px);
    transition: transform 0.3s ease;
    flex-shrink: 0; /* Prevent sidebar from shrinking */
}


#page-content-wrapper h1 {
    margin-top: 0;
}


   
#wrapper.toggled #sidebar-wrapper {
    transform: translateX(0);
}

#page-content-wrapper {
    width: 100%;
    padding: 0px;   /* the right hand bootstrap menu top gap*/
    margin-left: 0;
    flex-grow: 1; /* Allow content to expand */
}

/* Adjust content margin when sidebar is visible */
#wrapper.toggled #page-content-wrapper {
    margin-left: 250px;
    transition: margin-left 0.3s ease;
}

/* Sidebar Styles */
#wrapper #sidebar-wrapper {
    background-color: #00ccff;  /* Now it will work */
}

.sidebar-heading {
    padding: 0.875rem 1.25rem;
    font-size: 1.2rem;
}

.list-group {
    width: 100%;
}

/* Navigation Bar Colors (CHANGE THESE) */
.navbar {
    background-color: red !important;

}

/* Menu Option Colors (CHANGE THESE) */
.list-group-item {
    color: #343a40;
}

.list-group-item:hover {
    background-color: #00ccff;
    color: white;
}

/* Sub-Menu Option Colors (CHANGE THESE) */
.submenu .list-group-item {
    padding-left: 30px;
    color: #343a40; /* Default: font color Dark Gray. Change to your desired text color for submenu items */	
}

.submenu .list-group-item:hover {
    background-color: #0099cc;
    color: white;
}

/* Alternate Background for Product List (CHANGE THESE) */
.product-list-alternate {
    background-color: #f0f8ff;
}

/* Hide Bootstrap Navbar Toggle Button on Larger Screens */
.navbar-toggler {
    display: none;
}

/* Hide the Sidebar Toggle Button on Larger Screens (and show Navbar toggle) */
@media (min-width: 768px) {
    #sidebar-wrapper {
        transform: translateX(0);
        position: static;

    }

    #wrapper.toggled #sidebar-wrapper {
        transform: translateX(0);
    }

    #wrapper.toggled #page-content-wrapper {
        margin-left: 250px;
    }

    #page-content-wrapper {
        margin-left: -10px;  /* This value is crucial - adjust it .  it controls the gap between the left menu and the right hand content */
		    margin-top: 0;
    }

    #menu-toggle {
        display: none;
    }

    .navbar-toggler {
        display: inline-block;
    }


}

