/* Public CSS copied from original assets/css/frontend.css */

/* Estilos para el modal - Botón oculto */
.iem-open-modal-btn {
	display: none !important;
}

/* Estilos para el modal */
.iem-modal-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(93, 92, 96, 0.8);
	z-index: 9999;
	overflow-y: auto;
}

.iem-modal-content {
	position: relative;
	background: white;
	margin: 50px auto;
	width: 90%;
	max-width: 800px;
	border-radius: 12px;
	box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
	animation: modalSlideIn 0.3s ease-out;
	border: 1px solid #e8e0e3;
}

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

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.iem-modal-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 32px;
	border-bottom: 1px solid #f7f3f5;
	background: #f0ebef;
	border-radius: 12px 12px 0 0;
}

.iem-modal-header h3 {
	margin: 0;
	color: #5d5c60;
	font-size: 1.5em;
	font-weight: 600;
}

.iem-close-modal {
	background: none;
	border: none;
	font-size: 28px;
	cursor: pointer;
	color: #a39fa2;
	transition: color 0.2s ease;
	line-height: 1;
	padding: 0;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
}

.iem-close-modal:hover {
	color: #5d5c60;
	background: #f7f3f5;
}

.iem-modal-body {
	padding: 0;
	max-height: 80vh;
	overflow-y: auto;
}

/* Ajustes para el formulario dentro del modal */
.iem-modal-body .interview-experience-form-pro {
	margin: 0;
	padding: 30px;
	box-shadow: none;
	border-radius: 0;
	background: white;
}

/* Formulario Styles */
.interview-experience-form-pro {
	max-width: 100%;
	margin: 0;
	padding: 0;
}

/* Progress bar con paleta rosa */
.form-progress {
	margin-bottom: 30px;
	padding: 32px 32px 0 32px;
}

.progress-bar {
	display: flex;
	justify-content: space-between;
	position: relative;
	margin-bottom: 30px;
}

.progress-bar::before {
	content: '';
	position: absolute;
	top: 15px;
	left: 0;
	right: 0;
	height: 2px;
	background: #e8e0e3;
	z-index: 1;
}

.progress-step {
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
	z-index: 2;
}

.step-number {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #f0ebef;
	color: #a39fa2;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 600;
	margin-bottom: 8px;
	transition: all 0.3s ease;
	border: 2px solid #e8e0e3;
}

.progress-step.active .step-number {
	background: #dc3c83;
	color: white;
	border-color: #dc3c83;
}

.step-label {
	font-size: 12px;
	color: #a39fa2;
	font-weight: 500;
}

.progress-step.active .step-label {
	color: #dc3c83;
	font-weight: 600;
}

/* Form steps */
.form-step {
	display: none;
	padding: 0 32px 32px 32px;
}

.form-step.active {
	display: block;
}

.form-step h3 {
	color: #5d5c60;
	margin-bottom: 12px;
	font-size: 1.5em;
	font-weight: 600;
}

.step-description {
	color: #a39fa2;
	margin-bottom: 25px;
	font-size: 14px;
	line-height: 1.5;
}

/* Form groups */
.form-group {
	margin-bottom: 25px;
}

.form-group label {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	color: #5d5c60;
	font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
	padding: 12px 16px;
	border: 2px solid #e8e0e3;
	border-radius: 8px;
	font-size: 14px;
	box-sizing: border-box;
	transition: all 0.2s ease;
	background: white;
	color: #5d5c60;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	outline: none;
	border-color: #dc3c83;
	box-shadow: 0 0 0 3px rgba(220, 60, 131, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
	border-color: #EF4444;
}

/* Checkbox group */
.checkbox-group {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 12px;
	margin-top: 8px;
}

.checkbox-label {
	display: flex;
	align-items: center;
	font-weight: normal;
	cursor: pointer;
	padding: 12px;
	border: 2px solid #e8e0e3;
	border-radius: 8px;
	transition: all 0.2s ease;
	background: white;
}

.checkbox-label:hover {
	background: #f7f3f5;
	border-color: #dc3c83;
}

.checkbox-label input {
	width: auto;
	margin-right: 12px;
}

/* Question items */
.question-item {
	margin-bottom: 20px;
	position: relative;
}

.interview-question {
	min-height: 100px;
	resize: vertical;
	font-family: inherit;
}

.char-count {
	position: absolute;
	bottom: 8px;
	right: 12px;
	font-size: 12px;
	color: #a39fa2;
	background: white;
	padding: 2px 6px;
	border-radius: 4px;
}

/* Buttons */
.add-question-btn {
	background: #f7f3f5;
	border: 2px dashed #d7cbd1;
	color: #a39fa2;
	padding: 12px 20px;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.2s ease;
	margin-bottom: 8px;
	width: 100%;
}

.add-question-btn:hover {
	background: #f0ebef;
	border-color: #a39fa2;
	color: #5d5c60;
}

.form-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 32px;
	padding-top: 24px;
	border-top: 1px solid #f7f3f5;
}

.iem-next,
.iem-submit {
	background: #dc3c83;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.iem-next:hover,
.iem-submit:hover {
	background: #c92a72;
	transform: translateY(-1px);
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.iem-back {
	background: #a39fa2;
	color: white;
	padding: 12px 24px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.iem-back:hover {
	background: #8c898d;
}

.iem-cancel {
	background: #f7f3f5;
	color: #a39fa2;
	padding: 12px 24px;
	border: 2px solid #e8e0e3;
	border-radius: 8px;
	cursor: pointer;
	font-size: 14px;
	font-weight: 600;
	transition: all 0.2s ease;
}

.iem-cancel:hover {
	background: #f0ebef;
	color: #5d5c60;
}

/* Success message */
.iem-success {
	background: #f0f9ff;
	color: #0369a1;
	padding: 20px;
	border-radius: 8px;
	margin-bottom: 24px;
	border: 1px solid #bae6fd;
}

.iem-success h3 {
	margin: 0 0 8px 0;
	color: #0369a1;
	font-size: 1.2em;
}

.iem-success a {
	color: #0369a1;
	text-decoration: underline;
	font-weight: 500;
}

.form-group small {
	display: block;
	margin-top: 6px;
	color: #a39fa2;
	font-size: 12px;
	line-height: 1.4;
}

/* Experiences List Styles */
.seo-interview-insights {
	max-width: 100%;
	margin: 0 auto;
}

.insights-list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.insight-item {
	background: white;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: box-shadow 0.3s ease;
}

.insight-item:hover {
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.company-header {
	margin-bottom: 16px;
}

.company-name {
	font-size: 1.4em;
	font-weight: 600;
	color: #1a1a1a;
	margin: 0 0 4px 0;
}

.position-type {
	color: #5f6368;
	font-size: 0.95em;
	font-weight: 500;
}

.location-section {
	margin-bottom: 16px;
}

.location {
	color: #1a73e8;
	font-size: 1em;
	font-weight: 500;
}

.interview-details {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 12px;
	margin-bottom: 20px;
	padding: 16px;
	background: #f8f9fa;
	border-radius: 8px;
}

.detail-item {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.detail-label {
	font-size: 0.85em;
	color: #5f6368;
	font-weight: 500;
}

.detail-value {
	font-size: 0.95em;
	color: #1a1a1a;
	font-weight: 400;
}

.types-list {
	line-height: 1.4;
}

.questions-section,
.overall-experience,
.additional-comments {
	margin-bottom: 5px;
}

.questions-section h4,
.overall-experience h4,
.additional-comments h4 {
	font-size: 1.1em;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 12px;
}

.questions-list {
	list-style: none;
	padding: 0;
	margin: 0;
}

.question-item {
	padding: 8px 0;
	border-bottom: 1px solid #f0f0f0;
}

.question-item:last-child {
	border-bottom: none;
}

.question-text {
	color: #3c4043;
	line-height: 1.5;
}

.questions-collapsible {
	margin-top: 12px;
}

.toggle-questions,
.toggle-experience {
	background: none;
	border: none;
	color: #1a73e8;
	cursor: pointer;
	font-size: 0.9em;
	font-weight: 500;
	padding: 8px 0;
	transition: color 0.3s ease;
}

.toggle-questions:hover,
.toggle-experience:hover {
	color: #0d47a1;
}

.experience-meta {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 16px;
	border-top: 1px solid #e0e0e0;
	margin-top: 16px;
}

.rating-badge {
	padding: 4px 12px;
	border-radius: 12px;
	font-size: 0.8em;
	font-weight: 600;
	text-transform: capitalize;
}

.rating-excellent {
	background: #d4edda;
	color: #155724;
}

.rating-good {
	background: #fff3cd;
	color: #856404;
}

.rating-average {
	background: #cce7ff;
	color: #004085;
}

.rating-poor {
	background: #f8d7da;
	color: #721c24;
}

.date {
	color: #5f6368;
	font-size: 0.85em;
	font-weight: 500;
}

.no-results {
	text-align: center;
	padding: 40px;
	color: #5f6368;
	background: white;
	border-radius: 12px;
	border: 2px dashed #e0e0e0;
}

.no-results a {
	color: #1a73e8;
	text-decoration: none;
}

.no-results a:hover {
	text-decoration: underline;
}

/* Stats Shortcode */
.iem-stats-shortcode {
	text-align: center;
	padding: 20px;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
	border-radius: 12px;
	margin: 20px 0;
}

.iem-stats-shortcode p {
	margin: 0;
	font-size: 1.2em;
	font-weight: 600;
}

.iem-stats-shortcode strong {
	font-size: 1.4em;
}

/* Widget Styles */
.iem-widget-stats {
	padding: 15px;
}

.iem-widget-stats p {
	margin: 10px 0;
	font-size: 14px;
	color: #333;
}

.iem-widget-stats strong {
	color: #dc3c83;
	font-size: 1.2em;
}

/* Responsive */
@media (max-width: 768px) {
	.iem-modal-content {
		margin: 20px auto;
		width: 95%;
	}

	.iem-modal-header {
		padding: 20px 24px;
	}

	.iem-modal-body .interview-experience-form-pro {
		padding: 20px;
	}

	.checkbox-group {
		grid-template-columns: 1fr;
	}

	.form-actions {
		flex-direction: column;
	}

	.form-actions button {
		width: 100%;
	}

	.progress-bar {
		gap: 8px;
	}

	.step-label {
		font-size: 11px;
	}

	.insight-item {
		padding: 20px;
	}

	.interview-details {
		grid-template-columns: 1fr;
	}

	.company-name {
		font-size: 1.2em;
	}

	.experience-meta {
		flex-direction: column;
		gap: 8px;
		align-items: flex-start;
	}
}

@media (max-width: 480px) {
	.iem-modal-content {
		margin: 10px auto;
		width: 98%;
	}

	.iem-modal-body .interview-experience-form-pro {
		padding: 16px;
	}

	.iem-modal-header {
		padding: 16px 20px;
	}

	.iem-modal-header h3 {
		font-size: 1.3em;
	}
}

/* ===== DISEÑO DE INSIGHTS - TAMAÑO FIJO 366x387px ===== */
.seo-interview-insights {
	max-width: 1200px;
	margin: 0 auto;
	font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.insights-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	padding: 20px 0;
}

.insight-card {
	width: 366px;
	min-height: 360px;
	max-height: 520px;
	background: #ffffff;
	border-radius: 16px;
	box-shadow: 0 6px 18px rgba(19, 24, 33, 0.08);
	padding: 20px;
	box-sizing: border-box;
	color: #111;
	transition: transform 0.2s ease, box-shadow 0.2s ease, max-height 0.3s ease;
	border: 1px solid #f0f0f0;
	display: flex;
	flex-direction: column;
	position: relative;
	overflow-y: auto;
	overflow-x: hidden;
}

.insight-card:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(19, 24, 33, 0.12);
}

/* Scrollbar styling for card */
.insight-card::-webkit-scrollbar {
	width: 6px;
}

.insight-card::-webkit-scrollbar-track {
	background: transparent;
}

.insight-card::-webkit-scrollbar-thumb {
	background: #d0d0d0;
	border-radius: 3px;
}

.insight-card::-webkit-scrollbar-thumb:hover {
	background: #b0b0b0;
}

.card-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 12px;
	flex-shrink: 0;
}

.card-header > div:first-child {
	flex: 1;
	min-width: 0;
}

.company-name {
	font-weight: 700;
	font-size: 16px;
	line-height: 1.3;
	color: #1a1a1a;
	margin: 0;
	word-break: break-word;
	overflow-wrap: break-word;
}

.position-type {
	color: #6b6b6b;
	font-size: 12px;
	margin-top: 4px;
	line-height: 1.4;
	word-break: break-word;
	overflow-wrap: break-word;
}

.card-chips {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-shrink: 0;
	flex-wrap: wrap;
	justify-content: flex-end;
}

.chip-rating {
	background: #e91e63;
	color: white;
	padding: 5px 12px;
	border-radius: 999px;
	font-weight: 600;
	font-size: 12px;
	box-shadow: 0 2px 6px rgba(233, 30, 99, 0.15);
	text-transform: capitalize;
	white-space: nowrap;
}

.chip-date {
	background: transparent;
	border: 1px solid #e0e0e0;
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 11px;
	color: #7a7a7a;
	white-space: nowrap;
}

.card-meta {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #7a7a7a;
	font-size: 13px;
	margin-bottom: 14px;
	flex-shrink: 0;
}

.card-meta svg {
	width: 14px;
	height: 14px;
	opacity: 0.9;
}

.card-details {
	color: #333;
	font-size: 13px;
	line-height: 1.5;
	margin-bottom: 12px;
	flex-shrink: 0;
}

.card-details div {
	margin-bottom: 8px;
}

.card-details b {
	font-weight: 700;
	color: #1a1a1a;
	font-size: 13px;
}

.card-divider {
	height: 1px;
	background: #efefef;
	margin: 1px 0;
	border-radius: 2px;
	flex-shrink: 0;
}

.questions-title {
	font-weight: 700;
	margin-bottom: 8px;
	color: #1a1a1a;
	font-size: 13px;
	flex-shrink: 0;
}

.questions-section {
	margin-bottom: 12px;
	flex-shrink: 0;
}

.comments-section {
	margin-bottom: 12px;
	flex-shrink: 0;
}

.question-list {
	color: #1a1a1a;
	font-size: 13px;
	line-height: 1.5;
	flex: 1;
	overflow: hidden;
}

.question-list ul {
	margin: 0;
	padding-left: 16px;
}

.question-list li {
	margin-bottom: 6px;
	position: relative;
}

.question-preview {
	max-height: 48px;
	overflow: hidden;
	position: relative;
}

.question-preview::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 8px;
	background: linear-gradient(transparent, white);
}

.question-full {
	display: none;
}

.experience-content {
	color: #333;
	font-size: 13px;
	line-height: 1.5;
	flex: 1;
	overflow: hidden;
}

.experience-preview {
	max-height: 40px;
	overflow: hidden;
	position: relative;
}

.experience-preview::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 16px;
	background: linear-gradient(transparent, white);
}

.experience-full {
	display: none;
}

.comments-content {
	color: #333;
	font-size: 13px;
	line-height: 1.5;
	max-height: 40px;
	overflow: hidden;
	position: relative;
}

.comments-content::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 16px;
	background: linear-gradient(transparent, white);
}

/* Botón Show More - Esquina inferior izquierda */
.show-more-container {
	position: absolute;
	bottom: 12px;
	left: 16px;
	text-align: left;
	flex-shrink: 0;
	z-index: 10;
}

.show-more-btn {
	background: #ffffff;
	border: 1px solid #e0e0e0;
	color: #e91e63;
	padding: 4px 10px;
	border-radius: 6px;
	font-weight: 600;
	font-size: 11px;
	cursor: pointer;
	transition: all 0.2s ease;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
	min-width: 80px;
}

.show-more-btn:hover {
	background: #e91e63;
	color: white;
	border-color: #e91e63;
	transform: translateY(-1px);
	box-shadow: 0 2px 4px rgba(233, 30, 99, 0.2);
}

/* Asegurar que el contenido no se solape con el botón */
.insight-card {
	position: relative;
	padding-bottom: 40px;
	/* Espacio para el botón */
}

.question-list,
.experience-content,
.comments-content {
	padding-bottom: 8px;
	/* Espacio adicional para evitar solapamiento */
}

/* Estados para contenido expandido */
.insight-card.expanded {
	height: auto;
	max-height: none;
	min-height: 387px;
	padding-bottom: 40px;
	overflow-y: visible;
	/* La card crece automáticamente sin scroll */
}

.insight-card.expanded .experience-preview,
.insight-card.expanded .question-preview,
.insight-card.expanded .comments-content::after {
	max-height: none;
}

.insight-card.expanded .experience-preview::after,
.insight-card.expanded .question-preview::after,
.insight-card.expanded .comments-content::after {
	display: none;
}

.insight-card.expanded .experience-full,
.insight-card.expanded .question-full,
.insight-card.expanded .field-full {
	display: inline !important;
}

.insight-card.expanded .field-preview,
.insight-card.expanded .question-preview {
	display: none !important;
}

.insight-card.expanded .show-more-btn {
	background: #e91e63;
	color: white;
	border-color: #e91e63;
}

/* Estilos para field-preview y field-full */
.field-full {
	display: none;
}

.field-preview {
	display: inline;
}

/* Indicador de más preguntas */
.question-list .more-indicator {
	color: #666;
	font-style: italic;
	font-size: 0.9em;
}

/* Colores para diferentes ratings */
.chip-rating.excellent {
	background: #28a745;
}

.chip-rating.good {
	background: #e91e63;
}

.chip-rating.average {
	background: #ffc107;
	color: #000;
}

.chip-rating.not-so-good {
	background: #fd7e14;
}

.chip-rating.terrible {
	background: #dc3545;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
	.insights-grid {
		grid-template-columns: repeat(2, 1fr);
		justify-items: center;
	}
}

@media (max-width: 768px) {
	.insights-grid {
		grid-template-columns: 1fr;
		gap: 16px;
		padding: 16px;
	}

	.insight-card {
		width: 100%;
		max-width: 366px;
		min-height: 387px;
		max-height: 520px;
		overflow-y: auto;
	}
    
	.insight-card.expanded {
		max-height: none;
		overflow-y: visible;
	}
}

@media (max-width: 480px) {
	.insights-grid {
		grid-template-columns: 1fr;
		gap: 12px;
		padding: 12px;
	}

	.insight-card {
		width: 100%;
		min-height: 387px;
		max-height: none;
		padding: 16px;
		padding-bottom: 50px;
		overflow-x: hidden;
		overflow-y: visible;
	}
    
	.insight-card.expanded {
		max-height: none;
		overflow-y: visible;
	}

	.card-header {
		flex-direction: column;
		align-items: flex-start;
		gap: 8px;
	}

	.card-chips {
		align-self: flex-start;
	}

	.company-name,
	.position-type {
		max-width: 100%;
		word-break: break-word;
	}

	/* En móvil el botón va al flujo normal, centrado */
	.show-more-container {
		position: static;
		margin-top: 8px;
		text-align: center;
	}

	.show-more-btn {
		position: static;
		transform: none;
	}
}

/* Estados de loading y empty */
.insights-loading {
	text-align: center;
	padding: 40px;
	color: #6b6b6b;
	grid-column: 1 / -1;
}

.no-results {
	text-align: center;
	padding: 40px;
	color: #6b6b6b;
	background: white;
	border-radius: 16px;
	border: 2px dashed #e0e0e0;
	grid-column: 1 / -1;
	max-width: 366px;
	margin: 0 auto;
}

.no-results a {
	color: #e91e63;
	text-decoration: none;
	font-weight: 600;
}

.no-results a:hover {
	text-decoration: underline;
}

/* Company Autocomplete Styles */
.iem-autocomplete-wrapper {
	position: relative;
	margin-bottom: 1rem;
}

.input-wrap {
	position: relative;
}

.iem-company-input {
	width: 100%;
	padding: 12px 44px 12px 42px;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	font-size: 15px;
	box-sizing: border-box;
	background: #fff;
	transition: box-shadow 0.12s, border-color 0.12s;
}

.iem-company-input:focus {
	outline: none;
	border-color: #3b82f6;
	box-shadow: 0 6px 18px rgba(59, 130, 246, 0.08);
}

.icon-left {
	position: absolute;
	left: 12px;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0.7;
	pointer-events: none;
}

.iem-btn-clear {
	position: absolute;
	right: 8px;
	top: 8px;
	border: 0;
	background: none;
	padding: 6px;
	border-radius: 6px;
	cursor: pointer;
	display: none;
}

.iem-btn-clear svg {
	opacity: 0.75;
	transition: opacity 0.2s;
}

.iem-btn-clear:hover svg {
	opacity: 1;
}

.iem-autocomplete-results {
	position: absolute;
	left: 0;
	right: 0;
	top: calc(100% + 8px);
	background: #fff;
	border: 1px solid #e5e7eb;
	border-radius: 10px;
	box-shadow: 0 8px 30px rgba(15, 23, 42, 0.06);
	max-height: 320px;
	overflow-y: auto;
	z-index: 80;
	display: none;
	padding: 6px;
	list-style: none;
	margin: 0;
}

.iem-autocomplete-results.active {
	display: block;
}

.iem-company-item {
	display: flex;
	gap: 12px;
	align-items: center;
	padding: 10px;
	border-radius: 8px;
	cursor: pointer;
	border-bottom: 1px solid #f3f4f6;
	transition: background 0.15s;
}

.iem-company-item:last-child {
	border-bottom: none;
}

.iem-company-item:hover,
.iem-company-item.hovered {
	background: #f3f4f6;
}

.iem-company-logo {
	width: 40px;
	height: 40px;
	border-radius: 6px;
	object-fit: contain;
	border: 1px solid #f0f0f0;
	background: #fff;
	padding: 6px;
	flex-shrink: 0;
}

.iem-company-meta {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-width: 0;
}

.iem-company-name {
	font-weight: 600;
	color: #111827;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iem-company-domain {
	font-size: 13px;
	color: #6b7280;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.iem-company-score {
	font-size: 12px;
	color: #6b7280;
	margin-left: auto;
	padding-left: 10px;
	flex-shrink: 0;
}

.iem-no-results {
	padding: 12px;
	text-align: center;
	color: #6b7280;
	font-size: 14px;
}

.iem-autocomplete-hint {
	font-size: 13px;
	color: #6b7280;
	margin-top: 8px;
	display: block;
}

