/* universal details-based collapsible wrapper for markdown content */
.mdbook-collapsible {
  border: 1px solid var(--table-border-color);
  border-radius: 6px;
  margin: 0.8rem 0 1.2rem;
  padding: 0;
  background: var(--theme-popup-bg);
}

.mdbook-collapsible > summary {
  cursor: pointer;
  padding: 0.65rem 0.9rem;
  font-weight: 600;
  list-style-position: inside;
}

.mdbook-collapsible > summary + * {
  margin-top: 0;
}

.mdbook-collapsible > :not(summary) {
  padding: 0 0.9rem 0.85rem;
}

/* keep your prior aggiecustom2 visual direction for collapsibles */
.mdbook-collapsible.aggiecustom2 {
  border-color: var(--sidebar-bg);
  box-shadow: 0 0.2rem 1rem 2px rgb(0 0 0 / 10%), 0 0 0.5rem 1px rgb(0 0 0 / 20%);
}

.mdbook-collapsible.aggiecustom2 > summary {
  background-color: var(--sidebar-bg);
  color: var(--sidebar-fg);
  border-bottom: 1px solid var(--table-border-color);
}

a[href^="http"]:not([href*="tamu.edu"])::after,
a[href^="https"]:not([href*="tamu.edu"])::after {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-left: 0.25em;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3l0 82.7c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M320 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l82.7 0L201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L448 109.3l0 82.7c0 17.7 14.3 32 32 32s32-14.3 32-32V32c0-17.7-14.3-32-32-32H320zM80 32C35.8 32 0 67.8 0 112V432c0 44.2 35.8 80 80 80H400c44.2 0 80-35.8 80-80V320c0-17.7-14.3-32-32-32s-32 14.3-32 32V432c0 8.8-7.2 16-16 16H80c-8.8 0-16-7.2-16-16V112c0-8.8 7.2-16 16-16H192c17.7 0 32-14.3 32-32s-14.3-32-32-32H80z'/%3E%3C/svg%3E") no-repeat center / contain;
}
/*
.aggie :is(.admonition) {
  background-color: var(--admo-bg);
}
*/

/* ================================================================
   Native mdBook 0.5.x admonitions — styled to match mdbook-admonish
   HTML: <blockquote class="blockquote-tag blockquote-tag-{type}">
           <p class="blockquote-tag-title"><svg>...</svg>Type</p>
           <p>content</p>
         </blockquote>
   Types: note (blue), tip (teal), important (cyan),
          warning (orange), caution (red)
   ================================================================ */

/* Override default blockquote top/bottom borders; apply admonish-style box */
.blockquote-tag {
    display: flow-root;
    margin: 1.5625em 0;
    padding: 0 1.2rem;
    color: var(--fg);
    background-color: var(--bg);
    border-top: none;
    border-bottom: none;
    border-right: none;
    border-left: none;
    border-inline-start: 0.4rem solid transparent;
    border-radius: 0.2rem;
    box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05), 0 0 0.1rem rgba(0, 0, 0, 0.1);
}

/* Title row — full-bleed colored header inside the box */
.blockquote-tag-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-block: 0;
    margin-inline: -1.2rem;
    padding: 0.7rem 1.2rem;
    font-weight: 700;
    font-size: 0.95rem;
    line-height: 1.4;
}

.blockquote-tag-title svg {
    flex: 0 0 auto;
    width: 1.1rem;
    height: 1.1rem;
}

/* NOTE — blue (#448aff) */
.blockquote-tag-note { border-inline-start-color: #448aff; }
.blockquote-tag-note .blockquote-tag-title {
    background-color: rgba(68, 138, 255, 0.1);
    color: #448aff;
}
.blockquote-tag-note .blockquote-tag-title svg { fill: #448aff; }

/* TIP — teal (#00bfa5) */
.blockquote-tag-tip { border-inline-start-color: #00bfa5; }
.blockquote-tag-tip .blockquote-tag-title {
    background-color: rgba(0, 191, 165, 0.1);
    color: #00bfa5;
}
.blockquote-tag-tip .blockquote-tag-title svg { fill: #00bfa5; }

/* IMPORTANT — cyan (#00b8d4) */
.blockquote-tag-important { border-inline-start-color: #00b8d4; }
.blockquote-tag-important .blockquote-tag-title {
    background-color: rgba(0, 184, 212, 0.1);
    color: #00b8d4;
}
.blockquote-tag-important .blockquote-tag-title svg { fill: #00b8d4; }

/* WARNING — orange (#ff9100) */
.blockquote-tag-warning { border-inline-start-color: #ff9100; }
.blockquote-tag-warning .blockquote-tag-title {
    background-color: rgba(255, 145, 0, 0.1);
    color: #ff9100;
}
.blockquote-tag-warning .blockquote-tag-title svg { fill: #ff9100; }

/* CAUTION — red (#ff1744) */
.blockquote-tag-caution { border-inline-start-color: #ff1744; }
.blockquote-tag-caution .blockquote-tag-title {
    background-color: rgba(255, 23, 68, 0.1);
    color: #ff1744;
}
.blockquote-tag-caution .blockquote-tag-title svg { fill: #ff1744; }

/* end of aggie custom styles */