/**
 * Halim Movie Report — modal dark theme
 * @version 2.1.1
 */
.halim-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.75);
	z-index: 999999;
	overflow-y: auto;
	padding: 20px;
	backdrop-filter: blur(4px);
}
.halim-modal-overlay.show {
	display: flex !important;
	align-items: center;
	justify-content: center;
	animation: halim-rp-fadeIn 0.2s ease-in;
}
@keyframes halim-rp-fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}
.halim-modal-dialog {
	position: relative;
	width: 100%;
	max-width: 600px;
	margin: auto;
	animation: halim-rp-slideDown 0.3s ease-out;
}
@keyframes halim-rp-slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.halim-modal-content {
	background: #1e1e28;
	color: #e4e4eb;
	border: 1px solid #3d3d4d;
	border-radius: 10px;
	box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(255, 255, 255, 0.04);
	position: relative;
}
.halim-modal-header {
	padding: 20px;
	border-bottom: 1px solid #353545;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: linear-gradient(180deg, #252530 0%, #1e1e28 100%);
	border-radius: 10px 10px 0 0;
}
.halim-modal-title {
	margin: 0;
	font-size: 20px;
	font-weight: 600;
	color: #6ee7b7;
}
.halim-modal-title i {
	margin-right: 8px;
	color: #34d399;
}
.halim-modal-close {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid #3d3d4d;
	border-radius: 8px;
	font-size: 28px;
	line-height: 1;
	color: #a8a8b8;
	cursor: pointer;
	padding: 0;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.halim-modal-close:hover {
	color: #f0f0f5;
	background: rgba(255, 255, 255, 0.1);
	border-color: #5a5a6e;
}
.halim-modal-body {
	padding: 20px;
	max-height: 70vh;
	overflow-y: auto;
}
.halim-modal-footer {
	padding: 15px 20px;
	border-top: 1px solid #353545;
	background: #1a1a22;
	border-radius: 0 0 10px 10px;
}
span.text-sm {
	font-weight: normal;
}
.report-modal ul {
	list-style: none;
	padding-left: 0;
}
.report-modal ul li {
	border-bottom: 1px solid #2f2f3c;
	padding: 10px 0;
	display: flex !important;
	align-items: flex-start !important;
	flex-direction: row !important;
}
.report-modal ul li:last-child {
	border: none;
}
.report-modal ul li input[type="checkbox"] {
	margin-right: 12px !important;
	margin-top: 2px !important;
	flex-shrink: 0 !important;
	float: none !important;
	position: relative !important;
	top: auto !important;
	left: auto !important;
	accent-color: #34d399;
	width: 18px;
	height: 18px;
}
.report-modal ul li label {
	font-weight: 600;
	font-size: 16px;
	color: #93c5fd;
	cursor: pointer;
	margin: 0 !important;
	flex: 1 !important;
	line-height: 1.4;
	float: none !important;
	display: block !important;
}
.report-modal ul li label:hover {
	color: #bfdbfe;
}
.report-modal ul li label span {
	font-weight: normal;
	font-size: 12px;
	color: #8b8b9a;
	display: block;
	margin-top: 4px;
}
.halim-modal-body .form-control {
	width: 100%;
	padding: 10px 15px;
	font-size: 14px;
	line-height: 1.5;
	color: #e8e8ef;
	background-color: #16161d;
	border: 1px solid #3d3d4d;
	border-radius: 6px;
	transition: border-color 0.15s, box-shadow 0.15s;
}
.halim-modal-body .form-control::placeholder {
	color: #6b6b7a;
}
.halim-modal-body .form-control:focus {
	border-color: #34d399;
	outline: 0;
	box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.22);
}
.halim-modal-body textarea.form-control {
	resize: vertical;
	min-height: 100px;
}
.halim-modal-footer .btn {
	padding: 10px 20px;
	font-size: 16px;
	border-radius: 6px;
	border: none;
	cursor: pointer;
	transition: all 0.3s;
}
.halim-modal-footer .btn-primary {
	background: linear-gradient(180deg, #10b981 0%, #059669 100%);
	color: #fff;
	box-shadow: 0 2px 8px rgba(16, 185, 129, 0.35);
}
.halim-modal-footer .btn-primary:hover {
	background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
	box-shadow: 0 4px 14px rgba(16, 185, 129, 0.45);
}
.halim-modal-footer .btn-default {
	background: #3d3d4d;
	color: #e4e4eb;
	border: 1px solid #4d4d5e;
}
.halim-modal-footer .btn-default:hover {
	background: #4d4d5e;
	border-color: #5d5d6e;
}
.halim-modal-footer .btn-block {
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
.halim-modal-footer .btn:last-child {
	margin-bottom: 0;
}
.alert {
	padding: 12px 20px;
	margin-bottom: 20px;
	border: 1px solid transparent;
	border-radius: 6px;
}
.alert-danger {
	color: #fecaca;
	background-color: rgba(127, 29, 29, 0.45);
	border-color: rgba(248, 113, 113, 0.35);
}
.alert-success {
	color: #a7f3d0;
	background-color: rgba(6, 78, 59, 0.45);
	border-color: rgba(52, 211, 153, 0.35);
}
.hidden {
	display: none !important;
}
/* Honeypot — ẩn khỏi người dùng, bot hay điền */
.halim-rp-honeypot-wrap {
	position: absolute !important;
	left: -9999px !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	opacity: 0 !important;
	pointer-events: none !important;
}
@media (max-width: 768px) {
	.halim-modal-dialog {
		max-width: 95%;
		margin: 10px auto;
	}
	.halim-modal-title {
		font-size: 18px;
	}
	.report-modal ul li label {
		font-size: 14px;
	}
}
