/* less margin between logo and title */
[dir=ltr] .md-header__title {
  margin-left: 0.4rem;
}

/* styling for the heart in the footer */
.heart {
  color: #e91e63;
}

/* flowchart classes */
.gc-graph-success {
  fill: #8BC34A;
  stroke: #4CAF50;
}

.gc-graph-warning {
  fill: #FFC107;
  stroke: #FF9800;
}

figure {
  display: block !important;
  margin: 0 !important;
}

figcaption {
  text-align: left;
}

/* styling for the screenshot admonition */
:root {
  --md-admonition-icon--screenshot: 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.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2023 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64v288c0 35.3 28.7 64 64 64h176l-10.7 32H160c-17.7 0-32 14.3-32 32s14.3 32 32 32h256c17.7 0 32-14.3 32-32s-14.3-32-32-32h-69.3L336 416h176c35.3 0 64-28.7 64-64V64c0-35.3-28.7-64-64-64H64zm448 64v288H64V64h448z"/></svg>')
}
.md-typeset .admonition.screenshot,
.md-typeset details.screenshot {
  border-color: rgb(125, 125, 125);
  background-color: rgba(155, 155, 155, 0.2); /* #EBEBEB; */
}
.md-typeset .screenshot > .admonition-title,
.md-typeset .screenshot > summary {
  background-color: rgba(125, 125, 125, 0.2);
}
.md-typeset .screenshot > .admonition-title::before,
.md-typeset .screenshot > summary::before {
  background-color: #448aff;
  -webkit-mask-image: var(--md-admonition-icon--screenshot);
  mask-image: var(--md-admonition-icon--screenshot);
}

/* custom color overrides */
.esri_red {
  color: #c96b4b;
}

.esri_blue {
  color: #448aff;
}

.esri_gray {
  color: #666666;
}

.esri_green {
  color: #68aa67;
}

/* custom font overrides */
.arial {
  font-family: Arial, sans-serif;
}

.arial_bold {
  font-family: Arial, sans-serif;
  font-weight: bold;
}

.times {
  font-family: "Times New Roman", serif;
}

.georgia {
  font-family: Georgia, serif;
}

.trebuchet {
  font-family: "Trebuchet MS", sans-serif;
}

.verdana {
  font-family: Verdana, sans-serif;
}

/* Custom table styling to closely resemble GitHub table styling */
th, td {
    border: 1px solid var(--md-typeset-table-color);
    border-spacing: 0;
    border-bottom: none;
    border-left: none;
    border-top: none;
}

.md-typeset__table {
    line-height: inherit;
}

.md-typeset__table table:not([class]) {
    font-size: .7rem;
    border-right: none;
}

.md-typeset__table table:not([class]) td,
.md-typeset__table table:not([class]) th {
    padding: 10px;
}