/* Toast Notification */
.toaster {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 100;
}

.toast {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    width: 356px;
    background-color: var(--color-despatch_white);
    color: var(--foreground);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

.toast-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast-icon svg {
    width: 20px;
    height: 20px;
}

.toast-title {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 2px;
}

.toast-text {
    opacity: 0.9;
    font-size: var(--font-size-body);
}

.toast[data-type="error"] .toast-icon {
    color: var(--destructive);
}

.toast[data-type="success"] .toast-icon {
    color: hsl(142.1, 76.2%, 36.3%);
}