/**
 * Cortina Consent Form Styles
 *
 * @package Cortina
 */

.cortina-consent-form {
	max-width: 600px;
	margin: 20px auto;
}

.cortina-consent-form-element {
	background: #fff;
	border: 1px solid #ddd;
	border-radius: 8px;
	padding: 30px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cortina-consent-checkbox {
	margin-bottom: 15px;
}

.cortina-consent-checkbox label {
	display: flex;
	align-items: center;
	font-size: 16px;
	cursor: pointer;
}

.cortina-consent-checkbox input[type="checkbox"] {
	margin-right: 10px;
	width: 18px;
	height: 18px;
}

.cortina-consent-notice {
	margin-bottom: 25px;
	padding: 12px;
	background: #f8f9fa;
	border-left: 3px solid #0073aa;
	border-radius: 4px;
}

.cortina-consent-notice p {
	margin: 0;
	color: #555;
}

.cortina-consent-buttons {
	display: flex;
	gap: 15px;
	justify-content: center;
	margin-bottom: 20px;
}

.cortina-consent-buttons .wp-block-button__link,
.cortina-consent-buttons .wp-element-button {
	padding: 12px 30px;
	font-size: 16px;
	border-radius: 4px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	transition: all 0.3s ease;
	display: inline-block;
}

.wp-block-button.is-style-fill .cortina-consent-accept {
	background: #0073aa;
	color: #fff;
	border: none;
}

.wp-block-button.is-style-fill .cortina-consent-accept:hover {
	background: #005a87;
	color: #fff;
}

.wp-block-button.is-style-outline .cortina-consent-decline {
	background: transparent;
	color: #0073aa;
	border: 2px solid currentColor;
}

.wp-block-button.is-style-outline .cortina-consent-decline:hover {
	background: rgba(0, 115, 170, 0.1);
	color: #005a87;
}

/* Responsive */
@media (max-width: 768px) {
	.cortina-consent-form {
		margin: 20px 10px;
	}

	.cortina-consent-form-element {
		padding: 20px;
	}

	.cortina-consent-buttons {
		flex-direction: column;
	}

	.cortina-consent-buttons .wp-block-button {
		width: 100%;
	}

	.cortina-consent-buttons .wp-block-button__link,
	.cortina-consent-buttons .wp-element-button {
		width: 100%;
		text-align: center;
	}
}
