/* Apply Publish-specific variables */
.published-container {
    --footer-display: none; /* Hides "Powered by Obsidian Publish" */
}

.theme-dark {
	--color-base-00:#151515;
	--color-base-20:#222222;
	--accent-h: 23;
    --accent-s: 100%;
    --accent-l: 55%;
}

.theme-light {
	--accent-h: 23;
    --accent-s: 100%;
    --accent-l: 55%;
}

.date-modified {
	opacity: 0.5;
	font-style: italic;
	display: inline-block;
	margin-top: 5rem;
}





/* Only apply styles if the device supports hover (Desktop) */
@media (hover: hover) and (pointer: fine) {
    .prodia-trigger {
        font-style: italic;
        color: var(--interactive-accent);
        cursor: help;
    }

    .prodia-tooltip {
        position: absolute;
        z-index: 1000;
        background: var(--background-primary);
        border: 1px solid var(--background-modifier-border);
        border-radius: 8px;
        padding: 10px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
        max-width: 300px;
        pointer-events: none;
        display: none;
    }
}

/* On Mobile, the trigger looks like normal text */
@media (pointer: coarse) {
    .prodia-trigger {
        font-style: normal;
        color: inherit;
        text-decoration: none;
    }
    .prodia-tooltip {
        display: none !important;
    }
}
