/* Fix Accessibility Issue - Interactive elements, like buttons or links, should be at least 44 by 44 pixels, so they can easily be clicked or tapped by all users */
.block-book-block-toc div.book-blocks-toc-book a {
	display: block;
	min-width: 44px;
	min-height: 44px;
	border-bottom: 15px solid #dfe1e2;
	padding: 12px 0 16px;
}

/* SiteImprove Fix - Interactive elements must by at least 44px x 44px */
/* Division pages - tabbed sections */
.horizontal-tabs ul.horizontal-tabs-list li a, .horizontal-tabs ul.horizontal-tabs-list li.selected a {
  padding: 14px 16px; /* Expands the clickable area */
  min-width: 44px; /* Sets a minimum width */
  min-height: 44px; /* Sets a minimum height */
}
/* Search NIC Products and Videos Page */
/* Example page at https://nicic.gov/training/catalog/instructor-led-training/correctional-case-management-jails */
.usa-card__container .usa-card__heading a {
    padding: 14px 0; /* Expands the clickable area - unable to apply to L/R b/c it misaligns the left alignment */
}
/* Due to added spacing above, reduce the padding for the .header container */
.usa-card__container .usa-card__header:has(.usa-card__heading a) {
	padding-top: 1rem;
}
/* Tweak the Page Title Hero Section Identifier */
/* NOTE:: unable to adding padding since element is placed absolutely */
.hero-breadcrumb nav ol.usa-breadcrumb__list li.usa-breadcrumb__list-item a {
    min-width: 44px;
}
/* For NEXT button in the Nav menu for Library Items at the bottom of the page */
.views-element-container .usa-nav__primary>.usa-nav__primary-item>span, .views-element-container .usa-nav__primary>.usa-nav__primary-item>a {
    padding: 1rem;
}
/* Fix plus and minus buttons on the Training page - overlays map */
/* Sample page at https://nicic.gov/training/schedule/in-person-ilt/leadership-evolution-manager-leader-0 */
.leaflet-touch .leaflet-bar a {
    width: 44px;
    height: 44px;
    line-height: 44px;
}
/* Fix link under Additional Links so it meets minimum size for interactive elements on the Funding Opportunities page */
/* Sample Page at https://nicic.gov/about-nic/funding-opportunities/risk-assessment-conducting-prison-security-audits-26pr10 */
.label-h3 > .field__item a {
    display: inline-block;
    padding: 8px 0; /* Adds top/bottom breathing room */
    margin-right: 12px; /* Adds space between adjacent links (if appicable) */
}
/* Add styling to the heading for the fixed link above so it looks better */ 
.label-h3 > .field__label {
    border-top: 1px solid #e6e6e6; /* .border-base-lighter */
    text-transform: uppercase;
}
/* Fix link under right side blue bar - Heading FORMAT - LInk DOWNLOAD THE PDF */
/* Sample page at https://nicic.gov/resources/nic-library/national-standards-cjccs-revised-august-2025 */
.nic-blue-sidebar .field a {
    display: inline-block;
    padding: 8px 0; 
}
/* Fix another interactive issue with the NetLib NIC VET NET page - the pluses on the left side menu */
.layout-sidebar-first .usa-sidenav .usa-sidenav__item a:not(.usa-button):not(.usa-current) {
    min-width: 44px; 
}
