/* SEOFAI Auto-Linker Frontend Styles */

/* Underline style (default) */
a.sal-autolink {
    text-decoration: underline;
    text-decoration-color: rgba(99, 102, 241, 0.4);
    text-underline-offset: 2px;
    transition: text-decoration-color 0.2s;
}
a.sal-autolink:hover {
    text-decoration-color: rgba(99, 102, 241, 0.8);
}

/* Dotted style */
.sal-style-dotted a.sal-autolink {
    text-decoration: none;
    border-bottom: 1px dotted rgba(99, 102, 241, 0.5);
}
.sal-style-dotted a.sal-autolink:hover {
    border-bottom-color: rgba(99, 102, 241, 0.9);
    border-bottom-style: solid;
}

/* Highlight style */
.sal-style-highlight a.sal-autolink {
    text-decoration: none;
    background: rgba(99, 102, 241, 0.08);
    padding: 1px 4px;
    border-radius: 3px;
    transition: background 0.2s;
}
.sal-style-highlight a.sal-autolink:hover {
    background: rgba(99, 102, 241, 0.15);
}

/* No style */
.sal-style-none a.sal-autolink {
    text-decoration: none;
}
