/* Make full-width elements like iframes break out of the default container */
.full-width-embed iframe {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    max-width: 100vw;
    border: none;
}

/* hide the navigation title */
.md-nav__title {
    display: none;
}

/* On larger screens, ensure the search icon is positioned correctly */
@media screen and (min-width: 76.1875em) {
    .md-search {
        flex-grow: 0;
    }
}

html {
  font-size: 14px; /* Change to your desired base font size */
}

// this DOES NOT WORK
/* Shrink all <h1> elements globally */
// .md-typeset h1 {
//     color: red !important;
//     font-size: 1.0rem !important; 
//     font-weight: 900 !important;
//   margin-top: 0 !important;
//   margin-bottom: 0.2rem !important;
// }

// NONE of this works:
/* /\* 1. Style Top-Level Section (e.g., Local Sales) *\/ */
/* .md-nav__item--section > .md-nav__link { */
/*     color: var(--md-default-fg-color); /\* Ensure it's the darkest possible text color *\/ */
/*     font-weight: 700;                  /\* Maximize available weight *\/ */
/*     margin-top: 1.25rem;               /\* Push it away from previous items *\/ */
/*     padding-bottom: 0.5rem;            /\* Add breathing room below it *\/ */
/*     border-bottom: 1px solid var(--md-default-fg-color--lightest); /\* Optional: thin separator *\/ */
/* } */

/* /\* 2. Style Sub-Items (e.g., Antique Alley) *\/ */
/* .md-nav__item .md-nav__link { */
/*   color: var(--md-default-fg-color--light); /\* Make sub-items slightly softer/greyer *\/ */
/*   font-weight: 400;                         /\* Keep them normal weight *\/ */
/*   font-size: 0.8rem;                        /\* Slightly smaller *\/ */
/* } */

/* /\* 3. Style Active Sub-Item *\/ */
/* .md-nav__link--active { */
/*   color: var(--md-primary-fg-color) !important; /\* Highlight the one you are on *\/ */
/*   font-weight: 700 !important; */
/* } */

/* /\* Reduce the overall size of the search field *\/ */
/* .md-search__form { */
/*     max-width: 20rem; /\* Adjust this value to your preference *\/ */
/* } */



