@import url('https://fonts.googleapis.com/css?family=Roboto+Mono|Source+Sans+Pro:300,400,600');

/* Logo styling */
.app-name-link {
  display: flex !important;
  align-items: center;
  padding: 10px 15px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-wrapper img {
  width: 32px; /* Adjust size as needed */
  height: 32px; /* Adjust size as needed */
  object-fit: contain;
}

.logo-wrapper span {
  font-size: 1.2rem;
  font-weight: 600;
}

/* Alternative method using background image */
.app-name-link.no-img {
  background-image: url(./assets/logofun.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 32px;
  padding-left: 45px;
}

.sidebar-toggle-button {
  background: var(--background) !important;
  width: auto !important;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid;
  border-color: var(--borderColor);
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.1);
}

.sidebar-toggle {
  transition: all;
  width: auto !important;
}

#docsify-darklight-theme {
  top: 0px;
  right: 8px;
  left: unset;
}

@media (max-width: 768px) {
  .sidebar-toggle {
   left: unset !important;
   right: 0 !important;
  }
}

@media (prefers-color-scheme: dark) {
  .sidebar-toggle-button {
    background: var(--background) !important;
    width: auto !important;
    border-radius: 16px;
    padding: 16px;
    border: 1px solid;
    border-color: var(--borderColor);
    box-shadow: -10px 0 14px rgba(0,0,0, 1);
  }
}
:root {
  --code-theme-background: #1a1a1a;
  --code-theme-text: #e3e3e3;
  --code-theme-selection: #363636;
  /* --background: #0f0f0f !impot; */
  /* --border-color: #1a1a1a !important; */


 
}



.markdown-section code {
  background-color: var(--code-theme-background);
  color: var(--code-theme-text);
}

.markdown-section pre {
  background-color: var(--code-theme-background);
}

.markdown-section pre > code {
  background-color: var(--code-theme-background);
}

/* Improve code block readability in dark mode */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #999;
}

.token.namespace {
  opacity: 0.7;
}

.token.string,
.token.attr-value {
  color: #98c379;
}

.token.punctuation,
.token.operator {
  color: #abb2bf;
}

.token.number {
  color: #d19a66;
}

.token.property,
.token.class-name,
.token.constant,
.token.symbol {
  color: #61aeee;
}

.token.selector,
.token.important,
.token.atrule,
.token.keyword,
.token.builtin {
  color: #c678dd;
}


/* Add Monaspace font */


img {
  border-radius: 20px;
  box-shadow: 0 0 28px rgba(0, 0, 0, 0.2);
}


article {
  font-family:  'Source Serif 4', monospace;
}

code {
  font-family: monospace !important;
  font-weight: 400;
}

.markdown-section {
  max-width: 768px;
}