:root {
	--lacardio-rojo: #dc3545;
	--lacardio-verde: #28a745;
}

/* Labels de preguntas */
.form-label {
	font-size: 14px;
}

/* Selects de evaluación */
.pregunta-evaluacion {
	border: 1px solid #ffabc4;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 14px;
	transition: all 0.3s ease;
}

.pregunta-evaluacion option[value="si"] {
	color: var(--lacardio-rojo);
}

.pregunta-evaluacion option[value="no"] {
	color: var(--lacardio-verde);
}

/* Botón principal de evaluación */
.form-select {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23E40046' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3E%3C/svg%3E");
	color: #616161;
	font-size: 18px;
}

#btn-evaluar:disabled {
	background-color: #e40046;
	cursor: not-allowed;
	opacity: 0.6;
}

/* Modales personalizados */
.modal-content {
	border: none;
	border-radius: 15px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Formulario de datos personales */
#formulario-datos-personales .form-control {
	font-family: "Open Sans" !important;
	border: 2px solid #e9ecef;
	color: #616161;
	border-radius: 8px;
	padding: 12px 16px;
	font-size: 14px;
	transition: all 0.3s ease;
}

#formulario-datos-personales button {
	font-size: 14px !important;
}

/* Loading spinner personalizado */
.fa-spinner {
	animation: spin 1s linear infinite;
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.container-fluid {
		padding: 10px;
	}

	#formulario-evaluacion {
		padding: 20px 15px;
	}

	.modal-body {
		padding: 20px 15px;
	}

	#btn-evaluar {
		padding: 12px 30px;
		font-size: 14px;
		min-width: 180px;
	}

	.modal .btn {
		padding: 8px 20px;
		font-size: 14px;
	}
}

@media (max-width: 576px) {
	.modal-dialog {
		margin: 10px;
	}

	.modal-header {
		padding: 15px 20px;
	}

	.modal-title {
		font-size: 16px;
	}

	.modal-body {
		padding: 20px;
	}
}

.modal .customButton-red {
	padding: 10px 24px !important;
	border: 1px solid #e40046 !important;
}

.modal .customButton-transparent {
	padding: 10px 24px !important;
}

.list-style {
	list-style: disc;
}

.list-style::marker {
	color: #fff !important;
}

@media (min-width: 992px) {
	.modal-dialog {
		max-width: 590px;
	}

	.customMesDelCorazon .modal-lg {
		max-width: 1000px;
	}
}
