/* Styling for Submissions Page */
.submission-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 2.25rem;
	margin-bottom: 2.5rem;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
	transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.submission-card:hover {
	transform: translateY(-2px);
	border-color: #cbd5e1;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.submission-card h3 {
	font-size: 1.4rem;
	font-weight: 800;
	color: #0f172a;
	margin-bottom: 1.25rem;
	padding-bottom: 0.5rem;
	border-bottom: 2px solid #e2e8f0;
	position: relative;
}

.submission-card h3::after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 50px;
	height: 2px;
	background: #0b4c68;
}

.submission-card h4 {
	font-size: 1.15rem;
	font-weight: 700;
	color: #1e293b;
	margin-top: 1.75rem;
	margin-bottom: 0.75rem;
	display: flex;
	align-items: center;
	gap: 8px;
	padding-bottom: 4px;
	border-bottom: 1px solid #f1f5f9;
}

.submission-card h4 i {
	color: #0b4c68;
	font-size: 1.1rem;
}

.submission-card p {
	font-size: 14.5px;
	line-height: 1.75;
	color: #334155;
	margin-bottom: 1.25rem;
}

.submission-card ul, .submission-card ol {
	padding-left: 1.25rem;
	margin-bottom: 1.25rem;
}

.submission-card li {
	font-size: 13.5px;
	line-height: 1.75;
	color: #475569;
	margin-bottom: 0.6rem;
}

.submission-card strong {
	color: #1e293b;
}

/* Subject grid */
.subject-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 0.5rem 1rem;
	margin: 1.5rem 0;
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 1.25rem;
}

.subject-item {
	font-size: 0.9rem;
	color: #475569;
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 8px;
}

.subject-item i {
	color: #10b981; /* green check */
	font-size: 0.85rem;
}

/* Example Code / References Block */
.example-block {
	background: #f8fafc;
	border: 1px dashed #cbd5e1;
	border-radius: 8px;
	padding: 1rem 1.25rem;
	margin-top: 0.75rem;
	margin-bottom: 1.25rem;
	font-family: 'Courier New', Courier, monospace;
	font-size: 0.9rem;
	color: #334155;
	line-height: 1.5;
	word-break: break-all;
}

.example-block p {
	margin-bottom: 10px;
	font-family: inherit;
	font-size: inherit;
	color: inherit;
	line-height: inherit;
}

.example-block p:last-child {
	margin-bottom: 0;
}

.example-block b, .example-block strong {
	color: #0f172a;
}
