#whitedash-timer-widget {
	display: inline-flex;
	align-items: center;
	gap: 5px;
}

#whitedash-timer-widget .icon {
	font-size: 14px;
}

#timer-text {
	font-weight: 600;
}

#timer-text.running {
	color: #21ba45;
	animation: pulse 2s infinite;
}

@keyframes pulse {
	0%, 100% { opacity: 1; }
	50% { opacity: 0.7; }
}
