/**
 * KTUI - Free & Open-Source Tailwind UI Components by Keenthemes
 * Copyright 2025 by Keenthemes Inc
 */

@layer components {
	.kt-tooltip {
		@apply rounded-md shadow-md shadow-[rgba(0,0,0,0.05)] dark:border dark:border-border bg-mono text-mono-foreground text-xs p-1.5;

		&:not(.show) {
			@apply hidden;
		}
	}

	.kt-tooltip-light {
		@apply bg-popover text-popover-foreground border border-border;
	}
}
