.notification-container {
    display: none;
    position: absolute;
    top: 60px;
    right: 4px;
    width: 360px;
    height: 90vh; /* Fixed height for the container */
    background-color: white;
    border: 1px solid #dddfe2;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    overflow: hidden; /* Hide overflow initially */
  }
  
  .notification-container.show {
    display: block;
  }
  
  .notification-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #dddfe2;
  }
  
  .notification-tabs .tab {
    margin-right: 15px;
    cursor: pointer;
  }
  
  .notification-tabs .tab.active {
    font-weight: bold;
  }
  
  .see-all {
    color: #1877f2;
    cursor: pointer;
  }
  
  .close-btn {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  .notifications-list {
    height: calc(650px - 56px);
    overflow-y: auto; 
  }
  
  .notification {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    border-bottom: 1px solid #dddfe2;
  }
  
  .notification:hover {
    background-color: #e5e5e7; 
}
  .notification.earlier {
    border-top: 1px solid #dddfe2;
  }
  
  .profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
  }
  
  .notification-text {
    flex-grow: 1;
  }
  
  .user-name {
    font-weight: bold;
  }
  
  .time-ago, .mutual-friends {
    display: block;
    color: #606770;
    font-size: 12px;
  }
  
  .notification-actions {
    display: flex;
    align-items: center;
  }
  
  .confirm-btn, .delete-btn {
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .confirm-btn {
    background-color: #1877f2;
    color: white;
    margin-right: 5px;
  }
  
  .delete-btn {
    background-color: #e4e6eb;
    color: black;
  }
  .three-dots {
    color: #000; 
    font-size: 24px;
    cursor: pointer;
  }
  .notification-menu {
    position: relative;
  }
  .menu {
    position: absolute;
    top: 5px;
    right:5px;
    background-color: #ffffff;
    border: 1px solid #ccc;
    padding: 10px; 
    width: 150px;
  }
  
  .menu-item {
    font-size: 11px; 
  }
  .mark-all-read {
    cursor: pointer;
  }
  
  .mark-all-read:hover {
    color: black; /* color on hover */
    text-decoration: underline; /* underline on hover */
  }
  .mark-as-read {
    cursor: pointer;
  }
  
  .mark-as-read:hover {
    color: black; /* color on hover */
  }
  .mark-all-unread {
    cursor: pointer;
  }
  
  .mark-all-unread:hover {
    color: black; /* color on hover */
    text-decoration: underline; /* underline on hover */
  }
  .mark-as-unread {
    cursor: pointer;
  }
  
  .mark-as-unread:hover {
    color: black; /* color on hover */
  }