
  #toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
  }

  .toast {
    min-width: 300px;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 6px;
    color: #fff;
    font-family: Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.4s ease;
  }

  .toast.show {
    opacity: 1;
    transform: translateX(0);
  }

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

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

  .toast .icon {
    font-size: 20px;
    margin-right: 12px;
  }

  .toast .message {
    flex-grow: 1;
    font-size: 15px;
  }

  .toast .close-btn {
    margin-left: 12px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: #fff;
  }

  .toast strong {
    color: #fff;
    font-weight: bold;
  }

