.notification {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 5px;
    padding: 15px;
    margin: 10px 0;
    max-width: 400px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 
    margin-left: 20px;
    margin-top: -110px;
    font-size: 16px;
    font-family: Arial, sans-serif;
    z-index: 22;
  }

  .notification .icon {
    display: flex;
    align-items: center;
    margin-right: 10px;
  }

  .notification .text {
    flex-grow: 1;
  }

  .notification .close-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 20px;
  }

  .notification.success {
    background-color: #e7f9ed;
    border-left: 5px solid #2ecc71;
  }

  .notification.success .icon {
    color: #2ecc71;
  }

  .notification.warning {
    background-color: #fff8e5;
    border-left: 5px solid #f1c40f;
  }

  .notification.warning .icon {
    color: #f1c40f;
  }