.notification {
    background-color: white;
    border: 1px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    padding: 15px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideIn 0.5s ease-out;
  }
  
  .notification.success {
    border-left: 5px solid green;
  }
  
  .notification.error {
    border-left: 5px solid red;
  }
  
  .notification.warning {
    border-left: 5px solid orange;
  }
  
  .notification .close-btn {
    cursor: pointer;
    font-size: 16px;
    margin-left: 15px;
  }
  
  @keyframes slideIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  