body {
    margin: 0;
    padding: 0;
  }
  
  .vertical-taskbar {
    display: flex;
    flex-direction: column;
    background-color: #333;
    color: #fff;
    justify-content: space-around;
    align-items: center;
    width: 60px; /* Adjust the width as per your requirement */
    height: 100vh; /* Adjust the height as per your requirement */
    position: fixed;
    left: 0;
    top: 0;
  }
  
  .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
  }
  
  .icon i {
    font-size: 24px;
  }
  
  .icon span {
    margin-top: 5px;
    font-size: 12px;
  }
  
  /* Style the selected icon */
  .active {
    background-color: #555;
  }
  
  /* Animation on hover */
  .icon:hover {
    transform: scale(1.2);
    transition: transform 0.3s ease;
  }
  .linkhrefcolor {
    color: cyan;
 }