.custom-toast {
    position: fixed;
    top: 20px;
    right: 30px;
    background-color: #4caf50;
    color: white;
    padding: 15px 15px 10px 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    width: 390px;
    height: 100px;
    font-family: sans-serif;
    z-index: 9999;
  }

  .custom-toast img {
    width: 60px;
    height: 60px;
    object-fit: cover;
  }

  .toast-content {
    flex: 1;
  }

  .toast-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 4px;
  }

  .toast-message {
    font-size: 15px;
    line-height: 1.2;
  }

  .toast-close {
    position: absolute;
    top: 5px;
    right: 8px;
    color: white;
    font-size: 16px;
    cursor: pointer;
  }

  .toast-progress {
    height: 3px;
    background: white;
    width: 100%;
    margin-top: 10px;
    animation: progressAnim 4s linear forwards;
  }

  @keyframes progressAnim {
    from { width: 100%; }
    to { width: 0%; }
  }