.toast-container {
    position:fixed;
    bottom:20px;
    right:20px;
    display: flex;
    flex-direction: column;
    gap:1rem;
    z-index:1000;
}

.toast {
    background-color: #ced4da;
    color:#0a0909;
    text-shadow: 0 2px 5px white;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 0.8rem;
    font-family: 'roboto', sans-serif;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    min-width: 200px;
    
    /* Slide-in animation on creation */
    animation: slideUp 0.3s ease-out forwards;
}

.toast.hide {
  animation: slideDown 0.6s ease-in forwards;
}

@keyframes slideUp{
    from{
        transform:translateY(100%);
        opacity:0;
    }
    to {
        transform: translateY(0%);
        opacity:1;
    }
}

@keyframes slideDown {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

