#custom-toast {
      display: none;
      position: fixed;
      bottom: 20px;
      left: 20px;
      background: #fff;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
      z-index: 9999;
      width: 90%;
      max-width: 320px;
      text-align: center;
      box-sizing: border-box;
    }

    #custom-toast .close-toast {
      position: absolute;
      top: 8px;
      right: 12px;
      font-size: 22px;
      cursor: pointer;
      color: #666;
      line-height: 1;
      z-index: 10001;
    }

    #custom-toast img {
      max-width: 100%;
      height: auto;
      margin-top: 28px;
      margin-bottom: 10px;
      border-radius: 8px;
    }

    #custom-toast p {
      margin: 0 0 10px;
      font-size: 15px;
      color: #333;
    }

    #custom-toast a {
      display: inline-block;
      background: #c8d925;
      color: #1d1455;
      padding: 8px 16px;
      border-radius: 6px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 500; /* reduced weight */
    }

    @media (max-width: 500px) {
      #custom-toast {
        bottom: 10px;
        left: 10px;
        right: 10px;
        width: auto;
      }

      #custom-toast img {
        display: none;
      }
    }