@tailwind base;
@tailwind components;
@tailwind utilities;

/* Reset for WP admin wrapper */
#tporret-api-data-importer-dashboard-root {
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
	-webkit-font-smoothing: antialiased;
}

/* Shimmer skeleton animation */
@keyframes eapi-shimmer {
	0% { background-position: -400px 0; }
	100% { background-position: 400px 0; }
}

.eapi-skeleton {
	background: linear-gradient( 90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75% );
	background-size: 800px 100%;
	animation: eapi-shimmer 1.5s infinite linear;
	border-radius: 6px;
}

/* Marquee animation for audit feed */
@keyframes eapi-marquee {
	0% { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}

.eapi-marquee-track {
	display: flex;
	animation: eapi-marquee 30s linear infinite;
	width: max-content;
}

.eapi-marquee-track:hover {
	animation-play-state: paused;
}
