* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none !important;
    list-style: none;
    scroll-behavior: smooth;
  }

          /* Custom CSS */
          html, body {
            height: 100%;
            margin: 0;
        }
  
        body {
            display: flex;
            flex-direction: column;
            padding-top: 56px;
        }
  
        .wrapper {
            display: flex;
            flex: 1;
            min-height: calc(100vh - 116px);
        }
  
        .navbar {
            z-index: 1030;
        }
  
        .sidebar {
            width: 250px;
            position: fixed;
            top: 56px;
            bottom: 0;
            left: 0;
            z-index: 1020;
            padding: 1rem;
            background-color: #f8f9fa;
            transition: all 0.3s;
            overflow-y: auto;
            padding-bottom: 80px;
        }
  
        .sidebar.collapsed {
            width: 0;
            padding: 0;
            overflow: hidden;
        }
  
        .main-content {
            flex: 1;
            margin-left: 250px;
            transition: all 0.3s;
            padding: 20px;
            min-height: 100%;
            padding-bottom: 80px;
        }
  
        .main-content.expanded {
            margin-left: 0;
        }
  
        .footer {
            height: 60px;
            background-color: rgba(248, 249, 250, 0.95); /* Slightly transparent */
            backdrop-filter: blur(5px); /* Adds blur effect under the footer */
            margin-left: 250px;
            transition: all 0.3s;
            position: fixed;
            bottom: 0;
            right: 0;
            left: 0;
            z-index: 1025; /* Higher than sidebar but lower than navbar */
        }
  
        .footer.expanded {
            margin-left: 0;
        }
  
        @media (max-width: 768px) {
            .sidebar {
                left: -250px;
            }
            
            .sidebar.show {
                left: 0;
                box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
            }
            
            .main-content {
                margin-left: 0;
            }
            
            .footer {
                margin-left: 0;
                display: none;
            }
        }
  
  
  