/* General Styling */

.md-header {
  background-color: rgb(84, 172, 88);
  --md-default-fg-color: #FFFFFF;
}

.md-source__repository{
    color:white !important;
}

.md-search__button::after {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

[data-md-color-scheme="slate"] .md-search__button {
  color: white;
}

[data-md-color-scheme="slate"]{
  --md-default-bg-color: #1E2129;
  --md-default-fg-color: #FFFFFF;
}


[data-md-color-scheme="slate"] .md-content a:hover{
    color:white;
}

[data-md-color-scheme="slate"] .md-sidebar a:hover{
    color:white !important;
}

[data-md-color-scheme="default"] .md-content a:hover{
  color:black;
}

[data-md-color-scheme="default"] .md-sidebar a:hover{
  color:rgb(84, 172, 88) !important;
}


/* Markdown Image Tags */
/* Example use: ![](image.png#bordered) */
img[src*="#bordered"] {
  border: 3px solid #ADADAD;
  border-radius: 2%;
  display: block;
  margin: auto;
}

img[src*="#centered"] {
  display: block;
  margin: auto;
}

/* Video Admonition Creation */
:root {
  --md-admonition-icon--video: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.5.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M0 128C0 92.7 28.7 64 64 64H320c35.3 0 64 28.7 64 64V384c0 35.3-28.7 64-64 64H64c-35.3 0-64-28.7-64-64V128zM559.1 99.8c10.4 5.6 16.9 16.4 16.9 28.2V384c0 11.8-6.5 22.6-16.9 28.2s-23 5-32.9-1.6l-96-64L416 337.1V320 192 174.9l14.2-9.5 96-64c9.8-6.5 22.4-7.2 32.9-1.6z"/></svg>');
  --md-primary-fg-color: #54AC58;
  --md-accent-fg-color: #54AC58; 
}

.md-typeset .admonition.video,
.md-typeset details.video {
  border-color: rgb(32, 148, 243, 0.1);
  background-color: rgb(32, 148, 243, 0.1);
}
.md-typeset .video > .admonition-title::before,
.md-typeset .video > summary::before {
  background-color: rgb(32, 148, 243);
  -webkit-mask-image: var(--md-admonition-icon--video);
          mask-image: var(--md-admonition-icon--video);
}

/* Concept Admonition Creation */
:root {
  --md-admonition-icon--concept: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.6.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2024 Fonticons, Inc.--><path d="M249.6 471.5c10.8 3.8 22.4-4.1 22.4-15.5l0-377.4c0-4.2-1.6-8.4-5-11C247.4 52 202.4 32 144 32C93.5 32 46.3 45.3 18.1 56.1C6.8 60.5 0 71.7 0 83.8L0 454.1c0 11.9 12.8 20.2 24.1 16.5C55.6 460.1 105.5 448 144 448c33.9 0 79 14 105.6 23.5zm76.8 0C353 462 398.1 448 432 448c38.5 0 88.4 12.1 119.9 22.6c11.3 3.8 24.1-4.6 24.1-16.5l0-370.3c0-12.1-6.8-23.3-18.1-27.6C529.7 45.3 482.5 32 432 32c-58.4 0-103.4 20-123 35.6c-3.3 2.6-5 6.8-5 11L304 456c0 11.4 11.7 19.3 22.4 15.5z"/></svg>');
  --md-primary-fg-color: #54AC58;
  --md-accent-fg-color: #54AC58; 
}
.md-typeset .admonition.concept,
.md-typeset details.concept {
  border-color: #54AC58;
}
.md-typeset .concept > .admonition-title,
.md-typeset .concept > .admonition-title::before,
.md-typeset .concept > summary::before {
  background-color: #54AC58;
  -webkit-mask-image: var(--md-admonition-icon--concept);
          mask-image: var(--md-admonition-icon--concept);
}

/* Abbreviation Styling */
abbr {
  border-bottom-style: solid !important;
  border-bottom-color: rgb(84, 172, 88) !important;
  border-bottom-width: 0.075rem !important;
  cursor: help;
}