/*
 * iTepix blue accent — replaces Inspinia's teal (#1ab394 / #19aa8d)
 * with brand blue (#1461f5). Sidebar layout is untouched.
 */

/* ---- Active nav border & background ---- */
.nav > li.active {
    border-left-color: #1461f5 !important;
}

/* ---- Buttons ---- */
.btn-primary {
    background-color: #1461f5 !important;
    border-color: #0d4fd4 !important;
    color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active,
.open > .dropdown-toggle.btn-primary {
    background-color: #0d4fd4 !important;
    border-color: #0940b5 !important;
    color: #fff !important;
}
.btn-primary.disabled,
.btn-primary[disabled],
fieldset[disabled] .btn-primary {
    background-color: #1461f5 !important;
    border-color: #0d4fd4 !important;
}

/* ---- Special/landing nav links ---- */
.navbar-default .special_link a {
    background: #1461f5 !important;
}
.navbar-default .special_link a:hover {
    background: #0d4fd4 !important;
}
.navbar-default .special_link a span.label {
    color: #1461f5 !important;
}
.navbar-default .landing_link a {
    background: #4a85f7 !important;
}
.navbar-default .landing_link a:hover {
    background: #1461f5 !important;
}

/* ---- Dropdown active item ---- */
.dropdown-menu > .active > a,
.dropdown-menu > .active > a:focus,
.dropdown-menu > .active > a:hover {
    background-color: #1461f5 !important;
}

/* ---- ibox title top border ---- */
.ibox-title {
    border-top-color: #1461f5 !important;
}

/* ---- Progress bars ---- */
.progress-bar {
    background-color: #1461f5 !important;
}

/* ---- Labels ---- */
.label-primary {
    background-color: #1461f5 !important;
}

/* ---- Nav tabs active top border ---- */
.nav-tabs > li.active > a,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a:hover {
    border-top: 3px solid #1461f5 !important;
}

/* ---- Pagination active ---- */
.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus {
    background-color: #1461f5 !important;
    border-color: #0d4fd4 !important;
}

/* ---- ibox-stat hover border (stat cards) ---- */
.ibox-stat:hover {
    border-left-color: #1461f5 !important;
}

/* ---- Page loader spinner ---- */
#page-loader .page-loader-inner {
    color: #1461f5 !important;
}

/* ---- Mini-navbar active text ---- */
body.mini-navbar .nav > li.active > a {
    color: #fff !important;
}

/* ---- Ladda button spinner centering ---- */
.ladda-button {
    position: relative;
    overflow: hidden;
}
.ladda-button .ladda-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: 0;
    pointer-events: none;
}
.ladda-button[data-style=zoom-in] .ladda-spinner,
.ladda-button[data-style=zoom-out] .ladda-spinner {
    transform: translate(-50%, -50%) scale(0);
}
.ladda-button[data-style=zoom-in].ladda-loading .ladda-spinner,
.ladda-button[data-style=zoom-out].ladda-loading .ladda-spinner {
    transform: translate(-50%, -50%) scale(1);
}
