@keyframes pulse-blue {
    0%, 100% { box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
}

.scanning-active {
    animation: pulse-blue 2s infinite;
}


.result-row {
    transition: background-color 0.2s ease;
}

.result-row:hover {
    background-color: rgba(59, 130, 246, 0.1);
}

.seq-font {
    font-family: 'Courier New', monospace;
    letter-spacing: 0.5px;
}


.score-badge {
    display: inline-block;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: bold;
    font-size: 0.75rem;
}

.score-high {
    background-color: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.4);
}

.score-mid {
    background-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.4);
}


.btn-action {
    background: transparent;
    border: 1px solid #4b5563;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    transition: all 0.2s;
    cursor: pointer;
    text-transform: uppercase;
}

.btn-action:hover {
    border-color: #60a5fa;
    color: #60a5fa;
    background-color: rgba(59, 130, 246, 0.1);
}


#hover-info {
    transition: opacity 0.2s;
}


textarea:focus {
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}