/**
 * PDF Download Button Styles
 *
 * @package CCOO\Fundacio
 */

/* Selector específico para aumentar especificidad sin !important */
.content-area .download-course-pdf,
body .download-course-pdf {
	background-color: #e30613;
	color: #ffffff;
	padding: 10px 15px;
	border-radius: 4px;
	text-decoration: none;
	font-weight: bold;
	margin: 15px 0;
	display: inline-block;
	border: none;
	transition: all 0.3s ease;
	cursor: pointer;
}

.content-area .download-course-pdf:hover,
body .download-course-pdf:hover {
	background-color: #c1050e;
	text-decoration: none;
}

.content-area .download-course-pdf:disabled,
.content-area .download-course-pdf.loading,
body .download-course-pdf:disabled,
body .download-course-pdf.loading {
	background-color: #cccccc;
	cursor: wait;
	opacity: 0.7;
}

@media (max-width: 768px) {
	.content-area .download-course-pdf,
	body .download-course-pdf {
		width: 100%;
		text-align: center;
		margin-bottom: 15px;
	}
}