/* Use the ID to increase specificity */
#topCheatSheet
{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  color: #24292e;
  padding: 10px;
}

/* Search bar styling - making sure it doesn't inherit weird pane styles */
#topCheatSheet #topSearchBar
{
  width: 100%;
  box-sizing: border-box;   /* Crucial for width: 100% inside padded divs */
  padding: 10px 15px;
  margin-bottom: 20px;
  border: 2px solid #e1e4e8;
  border-radius: 6px;
  font-size: 14px;
  display: block;
}

#topCheatSheet #topSearchBar:focus
{
  outline: none;
  border-color: #0366d6;
  box-shadow: 0 0 0 3px rgba(3, 102, 214, 0.3);
}

/* Headings */
#topCheatSheet .sheet-title
{
  font-size: 1.5rem;
  margin-top: 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #eaecef;
  padding-bottom: 5px;
}

#topCheatSheet .category-block h3
{
  font-size: 1.1rem;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #586069;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* List handling - removing default pane bullets if they exist */
#topCheatSheet ul
{
  list-style: none;
  padding-left: 0;
  margin: 0;
}

#topCheatSheet li
{
  padding: 2px 0;
  border-bottom: 1px solid #f6f8fa;
  font-size: 0.95rem;
}

#topCheatSheet li:last-child
{
  border-bottom: none;
}

/* Keycaps */
/*
#topCheatSheet kbd
{
  display: inline-block;
  padding: 3px 5px;
  font: 11px "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  line-height: 10px;
  color: #444d56;
  vertical-align: middle;
  background-color: #fafbfc;
  border: solid 1px #c6cbd1;
  border-bottom-color: #959da5;
  border-radius: 3px;
  box-shadow: inset 0 -1px 0 #959da5;
}
 */
/* Fixed vertical alignment for '→' and '←' */
#topCheatSheet kbd
{
    display: inline-flex;      /* Use flex instead of inline-block */
    align-items: center;       /* Vertical centering */
    justify-content: center;   /* Horizontal centering */

    /* Existing aesthetics */
    padding: 0 4px;
    font-family: "SFMono-Regular", Consolas, monospace;
    background-color: #fafbfc;
    border: solid 1px #c6cbd1;
    border-bottom-color: #959da5;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 #959da5;

    /* Fix the sizing so they don't jump around */
    height: 1.5em;
    line-height: 1;
}
/*
#topCheatSheet code
{
  padding: .2em .4em;
  margin: 0;
  font-size: 85%;
  background-color: rgba(27,31,35,.05);
  border-radius: 3px;
  font-family: monospace;
  color: #d63384;
}
 */
#topCheatSheet em
{
  color: #6a737d;
  font-size: 0.9em;
  font-style: italic;
}

/* The Search Filter */
#topCheatSheet .hidden
{
  display: none !important;
}
