.data-table th.sortable:hover {
    background-color: #374151;
}

.data-table th.sorted-asc::after {
    content: " ↑";
    color: #63b3ed;
}

.data-table th.sorted-desc::after {
    content: " ↓";
    color: #63b3ed;
}

.col-nr { width: 60px; text-align: center; }
.col-id { width: 150px; color: #93c5fd; }
.col-seq { width: 400px; }
.col-len { width: 80px; text-align: center; }
.col-activity { width: 200px; }
.col-db { width: 200px; }

.sequence-container {
    display: block;
    width: 100%;
}

.sequence-line {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: clip;
    line-height: 1.5;
    font-family: monospace, sans-serif;
    letter-spacing: 0.5px;
    color: #cbd5e1;
}

.active-filters-container {
    display: none; 
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem 0;
    margin-bottom: 0.5rem;
}
.active-filters-top {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    min-height: 40px;
    align-items: flex-start;
}

.active-filter-tag {
    display: flex;
    align-items: center;
    background-color: #3b82f6; 
    color: white;
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem; 
    cursor: pointer;
    transition: background-color 0.2s;
    user-select: none;
}

.active-filter-tag:hover {
    background-color: #2563eb; 
}


.filter-remove-btn {
    margin-left: 0.25rem;
    font-weight: bold;
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
}

.active-filter-tag.inactive {
    background-color: #6b7280; 
    color: #e5e7eb;
}

.active-filter-tag.inactive:hover {
    background-color: #4b5563;
}
