/* --- Obsidian Publish Custom Branding --- */

:root {
    /* Main Accent Color */
    --accent-h: 120;
    --accent-s: 100%;
    --accent-l: 50%;
    
    /* Explicit Hex Override for consistency */
    --color-accent: #00ff00;
    --color-accent-hover: #00cc00;
}

/* Adjusting UI elements to match the #00ff00 accent */
.publish-renderer {
    --link-color: #00ff00;
    --link-external-color: #00ff00;
    --nav-item-color-active: #00ff00;
    --nav-item-color-hover: #00ff00;
    --text-selection: rgba(0, 255, 0, 0.2);
}

/* Scrollbar styling for a cohesive look */
::-webkit-scrollbar-thumb {
    background-color: #00ff00 !important;
}

/* Search highlighting */
.suggestion-item.is-selected {
    background-color: #00ff00;
    color: #000; /* Dark text for contrast on bright green */
}