 body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
        }
        
        
        .toggle-btn {
            position: fixed;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: #663399;
            color: #fff;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: none;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 768px) {
            .toggle-btn {
                display: flex;
            }
        }
        img.responsive-img {
            width: 100%;
            height: auto;
            max-height: 400px; /* Set a maximum height if needed */
        }

        @media (max-width: 768px) {
            img.responsive-img {
                max-height: 300px;
            }
        }

        @media (max-width: 480px) {
            img.responsive-img {
                max-height: 200px;
            }
        }
        body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container, .row {
    margin: 0;
    padding: 0;
    max-width: 100%;
}

#sidebar {
    position: fixed;
    width: 120px;
    height: 100%;
    right: -120px;
    top: 0;
    background-color: white;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    text-align: center;
    padding-top: 20px;
  }

  #sidebar.active {
    right: 0;
  }

  .sidebar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 5px;
    color: #5e2c84;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
  }

  .sidebar-item:hover {
    background-color: #f0f0f0;
  }

  .sidebar-icon {
    margin-bottom: 5px;
    color: #5e2c84;
    font-size: 24px;
  }

  .toggle-btn {
    position: fixed;
    right: 20px;
    top: 20px;
    background-color: #5e2c84;
    color: white;
    border: none;
    border-radius: 5px;
    padding: 8px 12px;
    cursor: pointer;
    z-index: 1001;
  }

  @media (max-width: 768px) {
    #sidebar {
      width: 80px;
      right: -80px;
    }
    
    .sidebar-item {
      font-size: 10px;
    }
  }
   