/**
 * Game Codes Manager Frontend Styles
 */

.gcm-new-codes {
	margin: 1em 0;
	padding-left: 1.5em;
	list-style-type: disc;
}

.gcm-new-codes li {
	margin-bottom: 0.5em;
}

.gcm-new-codes code {
	background-color: #f0f0f0;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: monospace;
	font-size: 0.9em;
}

.gcm-expired-codes {
	display: block;
	width: 100%;
	max-width: var(--wp--style--global--content-size, 100%);
	word-wrap: break-word;
	overflow-wrap: break-word;
	box-sizing: border-box;
	margin: 1em 0;
	line-height: 1.6;
}

.gcm-expired-codes code {
	background-color: #f0f0f0;
	padding: 2px 6px;
	border-radius: 3px;
	font-family: monospace;
	font-size: 0.9em;
	white-space: nowrap;
}

/* Ensure codes wrap properly within container */
.gcm-expired-codes {
	word-break: break-word;
	hyphens: auto;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
	.gcm-expired-codes {
		font-size: 0.9em;
	}
	
	.gcm-expired-codes code {
		font-size: 0.85em;
		padding: 1px 4px;
	}
}
