/**
 * Smart Internal Links CSS Styles
 * Custom styling for smart auto-generated internal links
 */

/* Smart internal links default styling */
.smart-internal-link {
    color: #ff6600 !important;
    font-weight: bold !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.smart-internal-link:hover {
    color: #e55a00 !important;
    text-decoration: underline !important;
}

/* Auto-generated smart links - more specific styling */
.smart-auto-link {
    position: relative;
}

.smart-auto-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: currentColor;
    opacity: 0.3;
}

.smart-auto-link:hover::after {
    opacity: 0.7;
}

/* Admin customization classes */
.smart-links-orange {
    color: #ff6600 !important;
}

.smart-links-blue {
    color: #0073aa !important;
}

.smart-links-green {
    color: #46b450 !important;
}

.smart-links-red {
    color: #dc3232 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .smart-internal-link {
        font-size: 0.95em;
    }
}