.simple-feedback-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(2px);
	z-index: 1040;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.simple-feedback-modal {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1050;
	pointer-events: none;
}

.simple-feedback-modal .modal-dialog {
	pointer-events: all;
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	animation: simple-feedback-scaleIn 0.3s ease;
}

.simple-feedback-modal .modal-content {
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 12px 30px rgba(0,0,0,0.2);
	border: none;
	overflow: hidden;
}

.simple-feedback-modal .modal-header {
	background: #a5d2ff;
	border-bottom: 1px solid #7bbdff;
	padding: 1rem 1.25rem;
}

.simple-feedback-modal .modal-title {
	font-size: 1.2rem;
	font-weight: 600;
	color: #333;
}

.simple-feedback-modal .modal-body {
	padding: 0.6rem 0.6rem 0 0.6rem;
	background: #fdfdfd;
}

.simple-feedback-modal textarea,
.simple-feedback-modal input[type="email"] {
	width: 100%;
	padding: 0.75rem;
	border: 1px solid #ced4da;
	border-radius: 6px;
	font-size: 0.95rem;
	background: #fff;
	margin-bottom: 0.6rem;
}

.simple-feedback-modal textarea:focus,
.simple-feedback-modal input[type="email"]:focus {
	border-color: #80bdff;
	outline: none;
	box-shadow: 0 0 0 2px rgba(0,123,255,0.2);
}

.simple-feedback-error {
	background-color: #f8d7da;
	color: #842029;
	border: 1px solid #f5c2c7;
	border-left: 4px solid #842029;
	padding: 0.75rem;
	border-radius: 6px;
	font-size: 0.95rem;
	font-weight: 500;
	text-align: left;
	display: none;
	margin-bottom: 0;
}

.simple-feedback-error.visible {
	display: block;
}

.simple-feedback-modal .modal-footer {
	padding: 0.75rem 1.25rem;
	background: #bcddff;
	border-top: 1px solid #7bbdff;
	display: flex;
	justify-content: flex-end;
	gap: 0.5rem;
}

.simple-feedback-modal .btn {
	font-size: 0.95rem;
	padding: 0.5rem 0.6rem;
	border-radius: 6px;
}

.simple-feedback-modal .btn-primary {
	background-color: #007bff;
	border-color: #007bff;
	color: #fff;
}

.simple-feedback-modal .btn-primary:hover {
	background-color: #0069d9;
}

.simple-feedback-modal .btn-secondary {
	background-color: #6c757d;
	border-color: #6c757d;
	color: #fff;
}

.simple-feedback-modal .btn-secondary:hover {
	background-color: #5a6268;
}

.simple-feedback-modal .btn-close {
	background: transparent;
	border: none;
	width: 1rem;
	height: 1rem;
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='black' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.293 2.293a1 1 0 011.414 0L8 6.586l4.293-4.293a1 1 0 111.414 1.414L9.414 8l4.293 4.293a1 1 0 01-1.414 1.414L8 9.414l-4.293 4.293a1 1 0 01-1.414-1.414L6.586 8 2.293 3.707a1 1 0 010-1.414z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1rem;
	cursor: pointer;
}

.simple-feedback-modal .btn-close:hover {
	opacity: 1;
}

@keyframes simple-feedback-scaleIn {
	from {
		opacity: 0;
		transform: scale(0.9);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
