/* Toast Content Styling */
.toast-content {
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: 100%;

	&:focus-visible {
		outline: none;
	}
}

.toast-content[role="button"] {
	cursor: pointer;
	font-size: 1rem;
	background: none;
	border: none;
	padding: 0;
	color: var(--app-font-color);
	text-align: left;
}

.toast-content p {
	line-height: 1.5rem;
}

.qr-code-wrapper {
	display: flex;
	justify-content: center;
	padding: 12px;
	border: 1px solid var(--border-color);
	border-radius: 4px;
	background-color: #ffffff;
}

.share-action {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 8px;
	cursor: pointer;
	padding: 8px;
	border: none;
	border-radius: 4px;
	background-color: transparent;
	color: inherit;
	transition: background-color 0.125s ease-in-out;
	width: 72px;

	&:hover {
		background-color: var(--gray-tertiary);
	}

	&:disabled {
		cursor: not-allowed;
		opacity: 0.5;
		pointer-events: none;
	}

	& span {
		font-size: 12px;
	}
}
