.result-block {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.5rem;
    padding: 1rem;
}
.result-title {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.result-title::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background: #3a8ffe;
}
.result-list {
    list-style: none;
    max-height: 12rem;
    overflow-y: auto;
    padding-right: 0.5rem;
}
.result-list li {
    padding: 0.3rem 0;
    font-size: 0.95rem;
    color: #4a5568;
    word-break: break-all;
}
.result-list li:hover {
    background: #edf2f7;
    border-radius: 0.25rem;
    padding-left: 0.3rem;
}
.no-results {
    color: #718096;
    font-style: italic;
}
.copy-btn {
    background: #edf2f7;
    border: none;
    border-radius: 0.25rem;
    padding: 0.15rem 0.4rem;
    font-size: 0.85rem;
    cursor: pointer;
    margin-left: 0.5rem;
    opacity: 0.8;
    transition: opacity 0.2s, background 0.2s;
}
.copy-btn:hover {
    opacity: 1;
    background: #e2e8f0;
}
.download-all-section {
    margin-top: 1rem;
}
.no-results {
    color: #718096;
    font-style: italic;
}