#toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .toast {
    padding: 14px 18px;
    border-radius: 6px;
    min-width: 240px;
    max-width: 320px;
    font-size: 14px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: fadeIn 0.3s ease-out;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    opacity: 0;
    animation-fill-mode: forwards;
  }

  .toast button {
    background: none;
    border: none;
    color: inherit;
    font-weight: bold;
    margin-left: 10px;
    cursor: pointer;
  }

  /* Toast types */
  .toast.success   { background-color: green; }
  .toast.error     { background-color: #F04B30; }
  .toast.warning   { background-color: #FFB52C; color: #222; }
  .toast.info      { background-color: #17a2b8; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
  }