/* ============================================================
   FeedMachinery PRO — Maintenance app brand layer
   Loaded after Bulma.
   Brand: primary #a5392f (hover #8a2f27, light tint #c0554a)
   Font: system stack, weight 500 (matches feedmachinery.com)
   ============================================================ */

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial,
        sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 500;
    background: #fafafa;
}

/* ---------- Navbar: white solid, like the main site ---------- */
.navbar.app-navbar {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}
.navbar.app-navbar .navbar-item,
.navbar.app-navbar .navbar-link {
    color: #444;
    font-weight: 500;
}
.navbar.app-navbar a.navbar-item:hover,
.navbar.app-navbar a.navbar-item.is-active {
    background: transparent;
    color: #a5392f;
}
.navbar.app-navbar .navbar-burger {
    color: #444;
}

/* Brand text: FeedMachinery + PRO chip */
.app-brand {
    font-size: 1.15rem;
    font-weight: 700;
    color: #333 !important;
    letter-spacing: -0.01em;
    
}
.pro-nav-text {
    position: relative;
    display: inline-block;
}
.app-brand .brand-dot {
    color: #a5392f;
}
.app-brand .brand-pro {
    display: inline-block;
    background: #a5392f;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    border-radius: 3px;
    padding: 0.15em 0.45em;
    margin-left: 0.5em;
    vertical-align: middle;
}
.app-brand .brand-app {
    color: #999;
    font-weight: 400;
    font-size: 0.85rem;
    margin-left: 0.5em;
}
.pro-nav.pill {
        position: absolute;
    top: -8px;
    right: -12px;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(165, 57, 47, 0.1);
    color: #a5392f;
    padding: 2px 6px;
    border-radius: 4px;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.2s ease;
}

/* ---------- Buttons ---------- */
.button.is-primary {
    background-color: #a5392f;
    border-color: transparent;
}
.button.is-primary:hover,
.button.is-primary.is-hovered {
    background-color: #8a2f27;
}
.button.is-primary.is-outlined {
    background: transparent;
    border-color: #a5392f;
    color: #a5392f;
}
.button.is-primary.is-outlined:hover {
    background: #a5392f;
    border-color: #a5392f;
    color: #fff;
}
.button.is-link {
    background-color: #c0554a;
    border-color: transparent;
}
.button.is-link:hover,
.button.is-link.is-hovered {
    background-color: #a5392f;
}
.button.is-link.is-outlined {
    background: transparent;
    border-color: #a5392f;
    color: #a5392f;
}
.button.is-link.is-outlined:hover {
    background: #a5392f;
    border-color: #a5392f;
    color: #fff;
}

/* ---------- Accents ---------- */
a {
    color: #a5392f;
}
a:hover {
    color: #8a2f27;
}
.pagination-link.is-current {
    background-color: #a5392f;
    border-color: #a5392f;
}
.tag.is-link {
    background-color: #c0554a;
}
.notification.is-link {
    background-color: #c0554a;
}
.box {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.03);
}

/* ---------- Navbar quick search ---------- */
.navbar-search input {
    min-width: 180px;
}

/* ---------- App footer ---------- */
.app-footer {
    padding: 1.5rem;
    text-align: center;
    color: #999;
    font-size: 0.8rem;
}
.app-footer a {
    color: #a5392f;
}

/* ---------- Print: hide chrome, show content ---------- */
@media print {
    .navbar, .app-footer, .no-print, form, .button, .breadcrumb {
        display: none !important;
    }
    body {
        background: #fff;
    }
    .section {
        padding: 0;
    }
}
