        /* Sidebar Styles */
        .custom-sidebar {
            background: linear-gradient(to right, #1c1fc0, #a044ff);
            color: white;
            /* padding: 3px; */
            min-height: 100%;
            position:fixed;
            left: 0;
            top: 37px;
            bottom: 0;
            width: 228px;
            z-index: 1;
            overflow-y: auto;
            /* transition: margin-left 1s ease; */
            font-weight: 500;
        }

        .nav-link {
            /* background: linear-gradient(to right, #222222, #a044ff); */
            font-style: italic;
            color:white;
            display: block;
            /* padding: 10px 20px; */
            margin-bottom: 5px;
            border-radius: 7px;
            text-decoration:wavy;
            transition: background-color 1s ease;
        }

        .nav-link:hover, .nav-link.active {
            /* background-color: rgb(114, 49, 255); */
            color: rgb(17, 255, 0);
            transform: translateY(-5px);
            transition: 1s ease;

        }

        .nav-link i {
            /* margin-right: 8px; */
            color: antiquewhite;

        }

        .submenu {
            background: linear-gradient(to right, #000000, #a044ff);
            color: antiquewhite;

        }

        /* Main Content Side bar Styles */
        .main-content {
            /* margin-left: 228px; */
            /* transition: margin-left 1.5s ease; */
            /* background: linear-gradient(to right, #cedddd, #d4f8ff, #cedddd); */
            background-color:#e9e8ff;
            height: 100%;
            padding-top: 37px;
            width: 100%;
        }

        .sidebar-collapsed {
            margin-left: -228px;
        }

        .content-expanded {
            margin-left: 0;
        }

        /* Sidebar Toggler */
        .sidebar-toggler {
            /* color: rgb(255, 255, 255); */
            background-color: #601174;
            border: none;
            cursor: pointer;
            margin-left: 10px;
        }

        .sidebar-toggler:hover {
            /* background-color: #3167b7; */
            color: antiquewhite;
        }