    .notification-icon {
      position: relative;
      cursor: pointer;
      font-size: 24px;
      color: #333;
    }
    
    .notification-count {
      position: absolute;
     
      right:10px;
      background-color: red;
      color: white;
      border-radius: 50%;
      padding: 4px 8px;
      font-size: 12px;
    }

    .notification-popup {
      display: none;
      position: absolute;
      top: 40px;
      right: 0;
      width: 300px;
      max-height: 400px;
      overflow-y: auto;
      background-color: white;
      border: 1px solid #ddd;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      border-radius: 5px;
      z-index: 10;
    }

    .notification-popup .notification-item {
      padding: 10px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
    }

    .notification-popup .notification-item.unread {
      background-color: #f4f4f4;
    }

    .notification-popup .notification-item:hover {
      background-color: #ddd;
    }

    .notification-item button {
      background-color: #007bff;
      border: none;
      color: white;
      padding: 5px;
      cursor: pointer;
      font-size: 12px;
      border-radius: 4px;
    }

    /* Styling for the notification list */
    #notification-list {
      margin-top: 20px;
      width: 100%;
    }

    #notification-list .notification-item {
      padding: 10px;
      border-bottom: 1px solid #ddd;
    }

    #notification-list .notification-item.unread {
      background-color: #f9f9f9;
    }