/* START OF FILE components.css */

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px; /* Reduced from 12px 24px */
    border-radius: var(--border-radius);
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-speed);
    border: 2px solid transparent;
    font-size: 0.95rem; /* Slightly reduced font size */
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.btn-primary:hover {
    background-color: var(--primary-blue-dark);
    color: white;
    border-color: var(--primary-blue-dark);
}

.btn-secondary {
    background-color: var(--secondary-teal);
    color: white;
    border-color: var(--secondary-teal);
}

.btn-secondary:hover {
    background-color: var(--secondary-teal-dark);
    color: white;
    border-color: var(--secondary-teal-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: white;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    padding: 0.2rem;
    border: 1px solid rgba(0, 80, 158, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
}

.language-switcher a {
    display: inline-flex;
    min-width: 2.35rem;
    min-height: 2rem;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #315f89;
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
    color: #003f7f;
    background: rgba(0, 80, 158, 0.08);
}

.language-switcher a.is-active,
.language-switcher a[aria-current="true"] {
    color: #ffffff;
    background: #00509e;
}

.btn-large {
    padding: 14px 28px;
    font-size: 1.1rem;
}

/* Header & Navigation */
.site-header {
    background: white;
    backdrop-filter: blur(10px); /* Add blur effect for semi-transparent backgrounds */
    padding: 0.5rem 0; /* Reduced from 1rem to 0.5rem (50% reduction) */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: fixed; /* Fixed position to stay at the top */
    top: 0; /* Ensure it sticks to the very top */
    left: 0; /* Ensure it spans full width when sticking */
    width: 100%; /* Ensure it spans full width */
    z-index: 999;
    margin: 0; /* Explicitly remove any margin */
    transition: all 0.3s ease; /* Smooth transition for any changes */
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0; /* Reduced from 15px to 10px (33% reduction) */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 35px; /* Reduced from 40px to 35px */
    width: auto;
}

.main-nav {
    flex: 1;
    margin: 0 15px;
}

.main-nav ul { /* Applied to .nav-items directly later */
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.7vw, 28px);
    margin: 0;
    padding: 0;
    list-style: none;
}

.main-nav .submenu { /* General submenu styles, refined later */
    display: block;
    align-items: stretch;
    gap: 0;
}

.main-nav a { /* Applied to .nav-link later */
    color: var(--dark-grey);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.92rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

.main-nav .submenu a { /* Applied to .submenu a later */
    padding-bottom: 0;
}

.main-nav a::after { /* Applied to .nav-link::after later */
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color, #00509e);
    transition: width 0.3s ease;
}

.main-nav .submenu a::after { /* Applied to .submenu a::after later */
    display: none;
}

.main-nav a:hover { /* Applied to .nav-link:hover later */
    color: var(--primary-color);
}

.main-nav .submenu a:hover { /* Applied to .submenu a:hover later */
    color: var(--primary-blue);
}

.main-nav a:hover::after { /* Applied to .nav-link:hover::after later */
    width: 100%;
}

.main-nav a i { /* Applied to .nav-link i later */
    font-size: 0.7rem;
    margin-top: 2px;
}

.user-actions {
    display: flex;
    align-items: center;
    gap: 12px; /* Reduced from 15px */
}

.user-actions .btn {
    white-space: nowrap;
}

@media (min-width: 993px) and (max-width: 1280px) {
    .header-container {
        padding: 8px 16px;
    }

    .logo img {
        height: 30px;
    }

    .main-nav {
        margin: 0 8px;
        min-width: 0;
    }

    .nav-items {
        gap: clamp(8px, 1vw, 14px);
    }

    .main-nav a,
    .nav-link,
    .menu-trigger {
        font-size: 0.84rem;
        white-space: nowrap;
    }

    .user-actions {
        gap: 6px;
        flex-shrink: 0;
    }

    .user-actions .btn {
        padding: 8px 12px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .language-switcher {
        gap: 0.08rem;
        padding: 0.16rem;
    }

    .language-switcher a {
        min-width: 1.85rem;
        min-height: 1.75rem;
        font-size: 0.7rem;
    }
}

@media (min-width: 993px) and (max-width: 1100px) {
    .header-container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .logo img {
        height: 28px;
    }

    .main-nav {
        margin: 0 6px;
    }

    .nav-items {
        gap: 8px;
    }

    .main-nav a,
    .nav-link,
    .menu-trigger {
        font-size: 0.78rem;
    }

    .user-actions .btn {
        padding: 7px 9px;
        font-size: 0.78rem;
    }

    .language-switcher a {
        min-width: 1.7rem;
    }
}

.mobile-nav-close {
    display: none !important; /* Kept as important */
}

.mobile-only-nav-item {
    display: none;
}

.mobile-nav-toggle {
    display: none;
}

/* Responsive Header & Nav */
@media (max-width: 992px) {
    .main-nav {
        display: none; /* Hide by default on mobile */
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        height: 100vh;
        background: white;
        padding: 60px 20px 30px;
        transition: all 0.3s ease;
        margin: 0;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.15);
        z-index: 1000;
        overflow-y: auto; /* Allow scrolling */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    .main-nav.active {
        display: block; /* Show only when active */
        right: 0;
        z-index: 1000; /* Ensure it's on top when active */
        max-height: 100vh; /* Limit to viewport height */
        overflow-y: auto; /* Enable scrolling when content overflows */
    }

    .main-nav ul { /* Applies to .nav-items */
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .user-actions .language-switcher {
        display: none;
    }

    .mobile-only-nav-item .language-switcher {
        display: inline-flex;
        margin: 0.5rem 0;
    }

    /* Mobile Mega Menu Styles (applies from 992px down) */
    .mega-menu {
        position: static; /* Override absolute positioning */
        width: 100%; /* Take full width within the nav item */
        max-width: none; /* Override any desktop max-width */
        opacity: 1; /* Ensure visible (JS handles display) */
        visibility: visible; /* Ensure visible */
        transform: none; /* Reset any desktop transform */
        box-shadow: none; /* Remove desktop shadow */
        border-top: none; /* Remove desktop border */
        margin: 0; /* Reset desktop margin */
        padding: 1rem 0 0.5rem 1rem; /* Indent mobile submenus */
        background-color: transparent; /* Match background of nav panel */
        display: none; /* Hide by default (JS toggles to block) */
        height: auto; /* Allow height to adjust to content */
        overflow: visible; /* Ensure content isn't clipped */
    }

    .nav-item.has-mega-menu.active .mega-menu {
        display: block; /* Show when parent is active */
    }

    .mega-menu-content {
        display: flex;
        flex-direction: column; /* Stack columns vertically */
        gap: 1rem;
        padding: 0;
        width: 100%; /* Ensure content takes full width */
        height: auto; /* Allow height to adjust */
        overflow: visible; /* Ensure content isn't clipped */
    }

    .mega-menu-column {
        flex: none; /* Prevent shrinking */
        width: 100%; /* Take full width */
        height: auto; /* Allow height to adjust */
        overflow: visible; /* Ensure column content isn't clipped */
    }

    .mega-menu-column h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: none;
        padding-bottom: 0;
        color: var(--dark-grey) !important; /* Keep important if necessary */
    }

    .mega-menu-column ul {
        display: block !important; /* Keep important if necessary */
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }

    .mega-menu-column li {
        display: block !important; /* Keep important if necessary */
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin-bottom: 0.5rem !important;
    }

    .mega-menu-column a {
        display: block !important; /* Keep important if necessary */
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--dark-grey) !important;
        text-decoration: none !important;
        padding: 0.25rem 0 !important;
        width: 100%;
        box-sizing: border-box;
        white-space: normal;
    }

    .mega-menu-column a:hover {
        background-color: #f5f5f5;
    }

    /* Show submenu toggle buttons on mobile */
    .mobile-submenu-toggle {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--dark-grey);
        z-index: 2; /* Ensure it's above other elements */
        width: 40px; /* Adjust width as needed */
        height: 40px; /* Adjust height as needed */
        text-align: center; /* Center the icon */
    }

    /* Style for nav items with submenus */
    .nav-item.has-mega-menu > .nav-link {
        display: block;
        width: calc(100% - 40px); /* Full width minus toggle button width */
        padding-right: 0; /* Reset padding */
        position: relative; /* Ensure proper stacking context */
        z-index: 1; /* Ensure it's below the toggle button */
    }

    /* Style for active submenu */
    .nav-item.has-mega-menu.active .mobile-submenu-toggle i {
        transform: rotate(180deg);
    }

    .mobile-nav-close {
        display: block !important; /* Keep important */
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        font-size: 24px;
        color: var(--dark-grey);
        cursor: pointer;
        padding: 0;
    }

    .mobile-only-nav-item {
        display: block;
        width: 100%;
    }

    .user-actions {
        display: none;
    }

    .mobile-nav-toggle {
        display: flex !important;
        background: none !important;
        border: none !important;
        font-size: 24px !important;
        color: var(--dark-grey) !important;
        cursor: pointer !important;
        padding: 10px !important;
        min-height: 44px !important;
        min-width: 44px !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        z-index: 1001 !important;
        visibility: visible !important;
        opacity: 1 !important;
        /* Samsung browser specific fixes */
        -webkit-appearance: none !important;
        -webkit-tap-highlight-color: transparent !important;
        touch-action: manipulation !important;
    }

    /* Samsung browser and mobile device specific fixes */
    .mobile-nav-toggle i {
        display: block !important;
        font-size: inherit !important;
        color: inherit !important;
        pointer-events: none !important;
    }

    /* Force hamburger visibility on all mobile browsers */
    .site-header .mobile-nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Mobile-only navigation items inside mobile nav panel */
    .mobile-only-nav-item .btn {
        width: 100%;
        text-align: center;
        margin-bottom: 0.5rem;
    }
}

/* Guard against click interception on mobile: ensure hamburger is top-clickable */
@media (max-width: 992px) {
  .header-container { pointer-events: none !important; }
  .header-container .mobile-nav-toggle,
  .header-container .logo,
  .header-container .user-actions,
  .header-container #main-nav { pointer-events: auto !important; }
}


/* Pin hamburger to viewport so it is always topmost and clickable on mobile */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    position: fixed !important;
    top: 8px !important;
    right: 12px !important;
    z-index: 2147483000 !important; /* bring above any stacking contexts */
    pointer-events: auto !important;
  }
}




/* Additional mobile device compatibility - Samsung, Android, iOS */
@media screen and (max-width: 992px) {
    .mobile-nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: relative !important;
        z-index: 1001 !important;
    }

    /* Ensure hamburger icon is visible */
    .mobile-nav-toggle .fas.fa-bars {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 24px !important;
        color: var(--dark-grey) !important;
    }
}

/* Touch device specific fixes */
@media (hover: none) and (pointer: coarse) {
    .mobile-nav-toggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        min-height: 48px !important;
        min-width: 48px !important;
        touch-action: manipulation !important;
    }
}

/* Override any potential z-index conflicts from page-specific styles */
.site-header {
    z-index: 9999 !important;
}

.site-header .mobile-nav-toggle {
    z-index: 10000 !important;
    position: relative !important;
}

/* Responsive Header & Nav */
@media (max-width: 992px) {
    .nav-items {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .nav-item {
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    .nav-link {
        padding: 10px 0;
    }
    .mega-menu {
        position: static;
        width: 100%;
        max-width: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-top: none;
        margin: 0;
        padding: 1rem 0 0.5rem 1rem;
        background-color: transparent;
        display: none;
        height: auto;
        overflow: visible;
    }
    .nav-item.has-mega-menu > .nav-link {
        display: block;
        width: calc(100% - 40px);
        padding-right: 0;
        position: relative;
        z-index: 1;
    }
    .mobile-submenu-toggle {
        display: inline-block;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        padding: 8px;
        cursor: pointer;
        color: var(--dark-grey);
        z-index: 2;
        width: 40px;
        height: 40px;
        text-align: center;
    }
    .nav-item.has-mega-menu.active .mobile-submenu-toggle i {
        transform: rotate(180deg);
    }
    .mega-menu-content {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0;
        width: 100%;
        height: auto;
        overflow: visible;
    }
    .mega-menu-column {
        flex: none;
        width: 100%;
        height: auto;
        overflow: visible;
    }
    .mega-menu-column h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: none;
        padding-bottom: 0;
        color: var(--dark-grey) !important;
    }
    .mega-menu-column ul {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
    }
    .mega-menu-column li {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        margin-bottom: 0.5rem !important;
    }
    .mega-menu-column a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: var(--dark-grey) !important;
        text-decoration: none !important;
        padding: 0.25rem 0 !important;
    }
}

/* Navigation styles */
.nav-items {
    display: flex;
    align-items: center;
    gap: 25px; /* Reduced from 30px */
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    padding: 6px 0; /* Reduced from 8px to 6px */
    cursor: pointer;
}

/* Mega menu styles */
.mega-menu-wrapper {
    position: relative;
}

.mega-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-radius: 4px;
    z-index: 1000;
    padding: 15px;
    width: 500px;
}

.menu-items-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 8px;
    background: #ffffff;
}

.menu-item {
    padding: 8px 15px;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
    width: 100%;
    box-sizing: border-box;
    display: block;
    white-space: normal;
}

.menu-item:hover {
    background-color: #f5f5f5;
}

/* Show mega menu on wrapper hover */
.mega-menu-wrapper:hover .mega-menu {
    display: block;
}

/* Remove any backgrounds */
.nav-item,
.nav-link,
.nav-item:hover,
.nav-link:hover {
    background: none !important;
}

/* Mobile styles */
@media (max-width: 992px) {
    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        left: 0;
        box-shadow: none;
        padding: 10px;
    }

    .menu-items-grid {
        grid-template-columns: 1fr;
        gap: 5px;
        column-gap: 0;
    }

    .menu-item {
        padding: 12px 0;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
}

/* Additional mobile optimizations */
@media (max-width: 768px) {
    .header-container {
        padding: 8px 0;
    }

    .logo img {
        max-height: 40px;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1.1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }

    .mobile-only-nav-item .btn {
        margin: 8px 0;
        width: 100%;
        text-align: center;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .main-nav {


        width: 100%;
        right: -100%;
        padding: 60px 15px 30px;
    }

    .mobile-nav-close {
        top: 15px;
        right: 15px;
        font-size: 28px;
        min-height: 44px;
        min-width: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-items {
        gap: 20px;
    }

    .mega-menu {
        padding: 15px 0 10px 15px;
    }
}

/* Prevent header from intercepting taps on mobile; re-enable for interactive children */
@media (max-width: 992px) {
  .site-header { pointer-events: none !important; }
  .site-header .logo,
  .site-header #main-nav,
  .site-header .user-actions { pointer-events: auto !important; }
}


/* FINAL OVERRIDE: ensure re-parented hamburger is truly fixed and topmost on mobile */
@media (max-width: 992px) {
  body > .mobile-nav-toggle {
    position: fixed !important;
    top: 8px !important;
    right: 12px !important;
    z-index: 2147483000 !important;
    pointer-events: auto !important;
  }
}




/* Android-specific visibility treatment for problematic pages (About, Our Facility) */
@media (max-width: 992px) {
  body > .mobile-nav-toggle.android-chip {
    background: rgba(255, 255, 255, 0.96) !important;
    border: 1px solid rgba(0, 0, 0, 0.10) !important;
    border-radius: 12px !important;
    padding: 6px 8px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
    color: #111 !important;
    -webkit-text-fill-color: initial !important;
  }
  body > .mobile-nav-toggle.android-chip::before { content: none !important; }
  body > .mobile-nav-toggle.android-chip svg { display:block; width:22px; height:16px; }
  body > .mobile-nav-toggle.android-chip svg rect { shape-rendering: crispEdges; }

  body > .mobile-nav-toggle.no-svg svg {
    display: none !important;
  }
  body > .mobile-nav-toggle.no-svg::before {
    content: none !important;
  }
}

/* Bars for the Android chip fallback */
@media (max-width: 992px) {
  body > .mobile-nav-toggle.android-chip .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    margin: 4px 0;
    border-radius: 1px;
  }
}



/* Blog post navigation and key takeaways */
.key-takeaways {
  background: #f8fbff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 8px;
  padding: 16px 18px;
  margin: 24px 0;
}
.key-takeaways h3 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #0a2540;
}
.key-takeaways ul {
  margin: 0;
  padding-left: 18px;
}
.post-nav {
  margin: 16px 0 6px 0;
}
.post-nav-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.post-nav a {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 8px;
  background: #f6f6f6;
  color: #111;
  text-decoration: none;
}
.post-nav a:hover { background: #ececec; }
.prev-article { order: 1; }
.next-article { order: 2; }
@media (max-width: 600px) {
  .post-nav-row { flex-direction: column; align-items: stretch; }
  .prev-article, .next-article { width: 100%; text-align: center; }
}
/* Hide accidental duplicate post navigation blocks */
.post-nav + .post-nav { display: none; }



/* Blog spacing cleanup after removing Author Section cards */
/* Reduce excess whitespace between the end of an article and the Related Posts section */
.blog-post + .related-posts {
    padding-top: clamp(16px, 3vw, 32px);
}

/* If an Author Section still exists anywhere, keep reasonable spacing before Related Posts */
.author-section + .related-posts {
    padding-top: clamp(24px, 4vw, 40px);
}


/* Back to Services floating button */
.back-to-services {
  position: fixed;
  left: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 1500; /* Above page content, below mobile nav toggle */
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  text-decoration: none;
}

@media (max-width: 768px) {
  .back-to-services {
    left: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  }
}


/* --- Defensive fixes: hamburger icon rendering and grid overflow --- */
/* Ensure inline SVG hamburger renders consistently across devices */
.site-header .mobile-nav-toggle svg { display: block; width: 22px; height: 16px; }
.site-header .mobile-nav-toggle svg rect { shape-rendering: crispEdges; }
/* Prevent legacy icon/pseudo from overlapping SVG */
.site-header .mobile-nav-toggle::before { content: none !important; }
.site-header .mobile-nav-toggle i { display: none !important; }

/* Final mobile override: keep hamburger fixed and visible on mobile */
@media (max-width: 992px) {
  .site-header .mobile-nav-toggle {
    position: fixed !important;
    top: 8px !important;
    right: 12px !important;
    z-index: 2147483000 !important;
  }
}

/* Defensive grid overflow prevention (site-wide) */
.qa-intro-grid > *,
.shipping-intro-grid > *,
.menu-items-grid > *,
.partners-grid > *,
.benefits-grid > *,
.capabilities-grid > *,
.stats-grid > *,
.countries-grid > * {
  min-width: 0; /* allow grid children to shrink within fr columns */
}

/* Prefer clipping any accidental x-overflow in common containers */
@supports (overflow: clip) {
  .container, .content-section, main { overflow-x: clip; }
}


/* Accessible focus styles (keyboard visibility, high contrast) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
.menu-item:focus-visible {
  outline: 3px solid #0a84ff;
  outline-offset: 2px;
  box-shadow: none;
}

/* Provide visible focus for form inputs as well */
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid #0a84ff;
  outline-offset: 2px;
}
