.header .notification {
    color: red;
    margin-right: 5px;
    font-size: 20px;
    padding: 1px 7px;
    transition: all 0.2s ease;
    cursor: pointer; 
  }
  
  .header .notification a {
    color: inherit; 
    text-decoration: none; 
    display: block;
    pointer-events: none; 
  }
  
  .header .notification:hover {
    background-color: var(--alpa-blue);
    color: #fff; 
    border-radius: 4px;  
  }