  .custom-toast-card {
    width: auto;
    height: fit-content;
    border-radius: 8px;
    box-sizing: border-box;
    background-color: #ffffff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 15px;
  }

  .custom-toast-card .wave {
    position: absolute;
    transform: rotate(90deg);
    left: -31px;
    top: 32px;
    width: 80px;
  }

  .custom-toast-card .icon-container {
    width: fit-content !important;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #04e40048;
    border-radius: 50% !important;
    margin-left: 8px;
    font-size: 18px;
  }

  .custom-toast-card .message-text-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
  }

  .custom-toast-card .message-text,
  .custom-toast-card .sub-text {
    margin: 0;
    cursor: default;
  }

  .custom-toast-card .message-text {
    color: #269b24;
    font-size: 17px;
    font-weight: 700;
  }

  .info-toast .custom-toast-card .custom-toast-card .sub-text {
    font-size: 14px;
    color: #555;
  }
