/* Interop Styles */
.interop-tag {
    display: flex;
    align-items: center;
    background: #ffffff !important; /* Force white background in all contexts */
    border: 1px solid #edf2f7;
    border-radius: 4px;
    padding: 0.25rem 0.5rem;
    font-size: 0.8rem;
    height: 24px; /* Fixed height for consistency */
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
}

.interop-tag:hover {
    border-color: #a0aec0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.interop-tag.active-filter {
    background-color: #ebf4ff !important;
    border-color: #4299e1;
    color: #2b6cb0;
    font-weight: 500;
}

@media (max-width: 768px) {
    .interop-tag {
        font-size: 0.7rem;
        padding: 0.2rem 0.5rem;
    }
}
