/* stylesheet for SuperKids Vocabulary Learning System pages 
	Hides word input section, and styles VLS badge 
	Copyright (c) 2025 Knowledge Share LLC
*/

	.word-input-section { /* hide add words section */
		display: none !important;
	}
	
	.vocab-badge-simple {
		text-align: center;
		padding: 0 12px;
		margin: -10px 8px 0 0; 
		font-size: 13px;
	}
	.badge-icon {
		font-size: 16px;  
		margin-right: 4px;
		vertical-align: middle; /* keeps it aligned with text */
	}
	.vocab-badge-simple a {
		color: blue;
		text-decoration: none;
	}
	.vocab-badge-simple a:hover {
		text-decoration: underline;
	}
	.vocab-badge-simple a:visited {
		color: blue; /* same as regular - no purple */
	}