    .sidebar-menu {
        width: 100%;
        background-color: #ffffff; 
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
    }

    .sidebar-title {
        background: linear-gradient(to right, #fd03036b, #eff00578);
        padding: 10px 15px;
        border-radius: 6px;
        margin-bottom: 1rem;
        text-align: center;
    }

    .sidebar-title b {
        color: #2957a4; 
        font-size: 15px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }
   .titleleft h2 {
       font-size: 21px;
    color: #c00;
    font-weight: 600;
    line-height: 1.5;
    }
	
	.titleleft h3 {
    font-size: 17px;
    }
	
    .sidebar-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .sidebar-item {
        margin-bottom: 8px;
    }

    .sidebar-link {
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        background: #005eff14;
        border-radius: 6px;
        transition: all 0.3s ease;
        text-decoration: none; 
        color: #333; 
        font-weight: bold;
        font-size: 16px;
    }

    .sidebar-link:hover {
        background: #efef0524; 
        transform: translateY(-2px); 
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    }

    .sidebar-link span { 
        color: inherit;
    }

    .toggle-icon {
        color: #fe0000; 
        transition: transform 0.3s ease;
        font-size: 14px;
    }

    .toggle-icon.active {
        transform: rotate(180deg);
    }

    .sidebar-submenu {
        list-style: none;
        padding-left: 20px; 
        margin-top: 5px;
        overflow: hidden; 
        transition: all 0.4s ease-in-out; 
        max-height: 0; 
        opacity: 0; 
    }

    .sidebar-submenu.show {
        max-height: 500px; 
        opacity: 1;
    }

    .sidebar-sublink {
        display: block;
        padding: 8px 0;
        text-decoration: none;
        color: #555;
        font-weight:bold;
        font-size: 15px;
        transition: all 0.2s ease;
    }

    .sidebar-sublink:hover {
        color: #ff385c; 
        padding-left: 5px; 
    }

    .sidebar-sublink i.fas.fa-chevron-right {
        font-size: 10px; 
        padding-right: 8px;
        color: #ff385c; 
    }