/* Styles for Paper Format Page */
.format-card {
	background: #ffffff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 30px;
	margin-bottom: 30px;
	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;
}

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

.format-card h3 {
	font-size: 20px;
	font-weight: 800;
	color: #1e293b;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid #f1f5f9;
	position: relative;
}

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

.format-download-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
	color: #ffffff !important;
	font-size: 14px;
	font-weight: 700;
	padding: 12px 30px;
	border-radius: 8px;
	box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
	transition: all 0.2s ease;
	border: 0;
	text-transform: none;
	margin-top: 10px;
}

.format-download-btn:hover {
	background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(239, 68, 68, 0.3);
	color: #ffffff !important;
}

.format-download-btn i {
	font-size: 16px;
}

.format-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.format-list li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 12px;
	font-size: 14.5px;
	line-height: 1.6;
	color: #475569;
}

.format-list li::before {
	content: "\f00c";
	font-family: "FontAwesome";
	position: absolute;
	left: 0;
	top: 3px;
	color: #10b981;
	font-size: 14px;
}

.format-spec-box {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 20px;
	margin-top: 20px;
}

.format-spec-title {
	font-weight: 700;
	color: #1e293b;
	margin-bottom: 10px;
	font-size: 15px;
	display: flex;
	align-items: center;
	gap: 8px;
}
