/* Copyright (c) 2025 Antmicro <www.antmicro.com> */

/* SPDX-License-Identifier: Apache-2.0 */

[data-md-color-scheme="slate"] {
    --md-hue: 218;
    --md-default-bg-color: hsla(var(--md-hue), 22%, 7%, 1);
  }
  
  [data-md-color-primary="teal"] {
    --md-primary-fg-color: #25292e;
  }
  
  [data-md-color-scheme="slate"][data-md-color-primary="teal"] {
    --md-typeset-a-color: #00d0c9;
  }
  
  .md-social {
    display: none;
  }
  
  .md-header__option {
    display: none;
  }
  
  header {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding: 1rem;
    border-bottom: 1px solid var(--border-primary);
    margin-bottom: 0;
    font-family:
      "Inter",
      -apple-system,
      BlinkMacSystemFont,
      "Segoe UI",
      sans-serif;
  }
  
  .container-title > h3 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-primary);
    padding: 0;
  }
  
  .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .nav-left {
    font-size: 1rem;
    display: flex;
    font-weight: 600;
    align-items: center;
    color: var(--text-primary);
    gap: 0.5rem;
  }
  
  body > .container-title {
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    color: var(--text-primary);
  }
  
  .container-title {
    padding: 0;
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 400;
  }
  
  .nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  
  .nav-item {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
  }
  
  .nav-item img {
    width: 14px;
    height: 14px;
    margin-right: 0.5rem;
    opacity: 0.9;
  }
  
  .nav-urls {
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    gap: 0.25rem;
  }
  
  .nav-urls:hover {
    background-color: var(--border-hover);
    color: var(--text-primary);
  }
  
  .nav-urls img {
    width: 14px;
    height: 14px;
    opacity: 0.8;
  }
  
  .tooltip {
    position: relative;
  }
  
  .tooltip-text {
    color: white;
    visibility: hidden;
    text-align: center;
    position: absolute;
    z-index: 1;
    opacity: 0;
    font-size: 0.875rem;
    background: #25292e;
    padding: 10px;
    border-radius: 5px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
  }
  
  .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
    top: 150%;
    left: 100%;
  }
  
  ::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    background-color: var(--bg-tetriary);
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #3f3f46;
    border-radius: 4px;
  }
  
  ::-webkit-scrollbar-track {
    background-color: var(--bg-tetriary);
  }
  
  * {
    scrollbar-width: thin;
    scrollbar-color: #3f3f46 var(--bg-tetriary);
  }
  
  *::selection {
    background-color: var(--accent-background);
    color: var(--accent-primary);
  }
  