.notification-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    padding: 10px;
    display: none;
    z-index: 9999;
  }
  
  .notification-content {
    font-size: 16px;
    margin-bottom: 10px;
  }
  
  .close-notification {
    background-color: #ddd;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
  }
  