/**
 * Copyright (c) 2024, The Linux Foundation.
 * SPDX-License-Identifier: Apache-2.0
 */
.cs-search-bar {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 1rem;
}

.cs-search-bar input {
  background-color: var(--input-background-color);
  color: var(--input-text-color);
  width: 100%;
  padding: 10px 40px 10px 20px;
  border: 1px solid #ccc;
  border-radius: 25px;
  font-size: 16px;
  outline: none;
  box-shadow: none;
}

.cs-search-bar i {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 18px;
}

.code-sample-listing mark {
  background: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  border-radius: 4px;
  outline: 4px solid rgba(255, 255, 0, 0.3);
  outline-offset: 2px;
}
