/* RULOCUS GDPR Modal Styles */
.rulocus-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	z-index: 9999;
	display: flex;
	justify-content: center;
	align-items: center;
	backdrop-filter: blur(3px);
}

.rulocus-modal-content {
	background: #ffffff;
	border-radius: 12px;
	max-width: 600px;
	width: 90%;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
	from {
		opacity: 0;
		transform: translateY(-50px) scale(0.9);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.rulocus-modal-header {
	padding: 30px 30px 20px;
	border-bottom: 2px solid #f0f0f0;
	background: linear-gradient(135deg, #e52222 0%, #3d0774 100%);
	color: white;
	border-radius: 12px 12px 0 0;
}

.rulocus-modal-header h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
}

.rulocus-modal-body {
	padding: 30px;
	padding-bottom: 0px;
	line-height: 1.6;
	color: #333;
}

.rulocus-modal-body p {
	padding-bottom: 1em;
}

.rulocus-modal-body ul {
	padding-left: 20px;
	margin-bottom: 20px;
}

.rulocus-modal-body li {
	margin-bottom: 8px;
}

.rulocus-disclaimer {
	background: #f8f9fa;
	padding: 15px;
	border-left: 4px solid #667eea;
	margin: 20px 0;
	border-radius: 4px;
}

.rulocus-modal-body a {
	color: #667eea;
	text-decoration: none;
	font-weight: 600;
}

.rulocus-modal-body a:hover {
	text-decoration: underline;
}

.rulocus-modal-footer {
	padding: 20px 30px 30px;
	display: flex;
	justify-content: center;
	gap: 15px;
}

.rulocus-btn {
	padding: 12px 30px;
	border: none;
	border-radius: 25px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: all 0.3s ease;
	min-width: 120px;
}

.rulocus-btn-primary {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
}

.rulocus-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.rulocus-btn-secondary {
	background: #6c757d;
	color: white;
}

.rulocus-btn-secondary:hover {
	background: #5a6268;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(108, 117, 125, 0.4);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
	.rulocus-modal-content {
		width: 95%;
		margin: 20px;
	}
	
	.rulocus-modal-header,
	.rulocus-modal-body,
	.rulocus-modal-footer {
		padding: 20px;
	}
	
	.rulocus-modal-header h2 {
		font-size: 24px;
	}
	
	.rulocus-modal-footer {
		flex-direction: column;
	}
	
	.rulocus-btn {
		width: 100%;
	}
}

/* Shake animation for modal */
@keyframes shake {
	0%, 100% { transform: translateX(0); }
	25% { transform: translateX(-5px); }
	75% { transform: translateX(5px); }
}

.shake {
	animation: shake 0.5s ease-in-out;
}