
body {
    margin: 0;
}

/* Ensures the arrow toggle stays above content but below navbar */
.z-1030 {
    z-index: 1030 !important;
}

/* Optional: Adjust arrow button hover or background */
.btn-outline-secondary {
    background-color: #ffffffcc;
    border-color: #ccc;
}
.btn-outline-secondary:hover {
    background-color: #f2f2f2;
    border-color: #bbb;
}

/* Fixed Top Navbar */
.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}

.with-fixed-navbar {
    padding-top: 80px;
}
body.Gowns_Collection {
    padding-top: 30px; /* Ensure no black space on top */
}


/* Fixed Left Sidebar */
/* public/css/sidebar_nav.css */

.sidebar-custom {
    width: 220px;
    background-color: #f8f9fa;
    min-height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 2px 0 5px rgba(0,0,0,0.1);
    padding-top: 80px; /* Adjust to match the height of your fixed navbar */
}

.sidebar-title {
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.nav-bold {
    font-weight: bold !important;
}

.sidebar-custom a {
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.sidebar-custom .sidebar-title {
    background-color: #d462a6;
    color: white;
    pointer-events: none;
}

.sidebar-custom a:hover:not(.sidebar-title) {
    background-color: #d462a6;
    color: white;
}

/* Page Content */
.page-content {
    margin-left: 300px;
    padding: 110px 30px 30px 30px; /* top = navbar height + 30 */
}
