/* SnipLead — Custom Styles */

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Code block scrollbar */
pre::-webkit-scrollbar {
    height: 8px;
}
pre::-webkit-scrollbar-track {
    background: #1E293B;
}
pre::-webkit-scrollbar-thumb {
    background: #475569;
    border-radius: 4px;
}
pre::-webkit-scrollbar-thumb:hover {
    background: #64748B;
}

/* Search results dropdown */
#search-results a {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #334155;
    transition: background 0.15s;
}
#search-results a:last-child {
    border-bottom: none;
}
#search-results a:hover {
    background: #1E293B;
}

/* Copy button feedback */
.copy-copied {
    background: #10B981 !important;
    color: #F8FAFC !important;
}

/* Focus visible for keyboard users */
*:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: 2px;
}

/* Details/summary cursor */
summary {
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
