/* Increase navbar brand logo height */
.md-header__button.md-logo img {
    max-height: 60px;
    height: 60px;
    width: auto;
}

img.recipe-img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Unchecked: make the circle lighter */
.md-typeset .task-list-control [type="checkbox"]:not(:checked) + .task-list-indicator {
  color: #9aa4b2 !important;                 /* controls the icon/border */
  box-shadow: inset 0 0 0 .1rem currentColor !important; /* ensure outline follows our color */
  background: transparent !important;        /* not strictly needed, just defensive */
}

/* Optional: ensure checked stays with the theme/accent */
.md-typeset .task-list-control [type="checkbox"]:checked + .task-list-indicator {
  color: var(--md-accent-fg-color);
}
