  .toast {
    padding: 16px 20px;
    margin-bottom: 12px;
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: marketing-request-toast-in 0.3s ease-out;
  }

  .toast.error {
    background-color: #dc3545;
  }

  .toast.success {
    background-color: #28a745;
  }

  .toast.fade-out {
    opacity: 0;
  }

  .toast-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .toast-message {
    font-size: 14px;
    line-height: 1.4;
    flex-grow: 1;
    margin-right: 12px;
  }

  .toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .toast-close:hover {
    color: #ef4444;
  }

  /* Animations */
  @keyframes slideInRight {
    from {
      transform: translateX(100%);
      opacity: 0;
    }

    to {
      transform: translateX(0);
      opacity: 1;
    }
  }

  @keyframes slideOutRight {
    from {
      transform: translateX(0);
      opacity: 1;
    }

    to {
      transform: translateX(100%);
      opacity: 0;
    }
  }
