.wrapper{
    padding-top: 70px;
  }
  
  
  /* Sidebar Styling */
  .sidebar {
    width: 300px;
    position: fixed;
    height: 100vh;
    background: #343a40;
    color: white;
    padding: 20px;
    overflow-y: auto;
    transition: all 0.3s ease-in-out;
}

.sidebar h2 {
    text-align: center;
    margin-bottom: 20px;
}

.sidebar a {
    display: block;
    padding: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.sidebar a:hover {
    background: #495057;
}

/* Toggle Button for Small Screens */
.sidebar-toggle {
    display: none;
    position: absolute;
    top: 15px;
    left: 15px;
    background: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000;
}

.content {
    margin-left: 320px;
    padding: 30px;
    transition: margin-left 0.3s ease-in-out;
}

/* Collapsible Sections */
.section-title {
    background: #007bff;
    color: white;
    padding: 15px;
    cursor: pointer;
    border-radius: 5px;
    margin-bottom: 10px;
    text-align: left;
    transition: background 0.3s;
}

.section-title:hover {
    background: #0056b3;
    i {
        color: #1cbb0e;
        }
}
i:hover {
color: #1cbb0e;
}

.section-content {
    display: none;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #007bff;
    border-radius: 5px;
    margin-bottom: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sidebar {
        width: 250px;
        left: -250px;
        position: fixed;
    }

    .sidebar-toggle {
        display: block;
    }

    .content {
        margin-left: 0;
        padding: 20px;
    }

    .sidebar.active {
        left: 0;
    }}