.salesforce-toast {
	/* background-color: #747474; */
	color: #fff;
	padding: 14px 24px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: auto;
	min-width: 360px;
	max-width: 600px;
	margin: 0 auto;
	position: fixed;
	top: 20px;
	left: 0;
	right: 0;
	z-index: 9999;
	animation: fadeInDown 0.4s ease;
	font-family: "Salesforce Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.salesforce-toast .icon {
	background: white;
	color: #747474;
	border-radius: 50%;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 16px;
	font-size: 18px;
	flex-shrink: 0;
}

.salesforce-toast .material-icons {
	font-size: 18px;
}

.salesforce-toast .message {
	flex-grow: 1;
	font-size: 15px;
}

.salesforce-toast .close {
	background: none;
	border: none;
	color: white;
	font-size: 20px;
	cursor: pointer;
	margin-left: 16px;
	transition: color 0.2s;
}

.salesforce-toast .close:hover {
	color: #ddd;
}
