@import url("https://fonts.xz.style/serve/ubuntu-mono.css");

:root {
    --nc-font-sans: "Ubuntu Mono", monospace;
    --nc-font-mono: "Ubuntu Mono", monospace;

    --nc-tx-1: #ffffff; 
    --nc-tx-2: #cfcfcf; 
    --nc-bg-1: #121212; 
    --nc-bg-2: #1d1d1d; 
    --nc-bg-3: #101010; 
    --nc-lk-1: #8e44ad; 
    --nc-lk-2: #e74c3c;
    --nc-lk-tx: #ffffff; 
    --nc-ac-1: #00e676; 
    --nc-ac-2: #40c4ff; 
    --nc-ac-3: #ffeb3b; 
    --nc-ac-tx: #121212;
}

  blockquote {
    padding-top: 5px;
    padding-bottom: 5px;
    border-left: 4px solid gray;
  }
  blockquote .tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0; /* Removes any margin around the tag list */
    padding: 0; /* Removes any padding around the tag list */
    list-style: none;
  }
  
  .tag {
    background-color: #27272A;
    padding: 2.5px 6px;
    white-space: nowrap;
  }

  details summary {
    display: flex;    
  }
  summary h3 {
    display: inline;
  }

  details[open] summary h3 {
    color: #ffa500; /* Change color when open (optional) */
  }
