/*
 * Marketing site overrides — small additions that sit on top of the bundled
 * custom.min.css. Anything added here should be a tweak, not a rewrite — full
 * style changes belong in custom.min.css (which would mean rebuilding the WP
 * theme's CSS bundle, currently out of scope).
 */

/* Header "Login" CTA button — visually separates from the nav links. */
.menuWrap .menu-cta {
    margin-left: 12px;
}
.menuWrap .menu-cta > a.themeBtn-sm {
    padding: 8px 18px;
    font-size: 13px;
    line-height: 1.4;
    border-radius: 6px;
    display: inline-block;
    color: #fff;
}

/* Clickable rows on the Latest Loads widget — hover affordance + pointer.
 * The row's data-href attribute is wired by the inline script in
 * components/loads-table.blade.php. */
#home-loads tbody tr.fade[data-href] {
    cursor: pointer;
    transition: background-color 0.15s ease;
}
#home-loads tbody tr.fade[data-href]:hover {
    background-color: rgba(0, 158, 221, 0.08);
}
