/*
 * Deal24Hours — Unified Brand Theme
 * Button color : #155fb5 (brand blue) → hover #0f1b4c (dark navy)
 * Brand gradient: #0f1b4c → #1a3a6b → #155fb5
 */

/* ── Font ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*, body, html {
    font-family: 'Poppins', sans-serif !important;
}

/* ── Bootstrap 5 CSS Variable Overrides ──────────────── */
:root {
    --bs-primary:            #155fb5;
    --bs-primary-rgb:        21, 95, 181;
    --bs-link-color:         #155fb5;
    --bs-link-color-rgb:     21, 95, 181;
    --bs-link-hover-color:   #0f1b4c;
}

/* ── Buttons: Primary ─────────────────────────────────── */
.btn-primary,
.btn-primary:focus {
    background-color: #155fb5 !important;
    border-color:     #155fb5 !important;
    color: #fff !important;
}
.btn-primary:hover,
.btn-primary:active {
    background-color: #0f1b4c !important;
    border-color:     #0f1b4c !important;
    color: #fff !important;
}

/* ── Buttons: Outline Primary ─────────────────────────── */
.btn-outline-primary {
    color:            #155fb5 !important;
    border-color:     #155fb5 !important;
    background-color: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:active {
    background-color: #155fb5 !important;
    border-color:     #155fb5 !important;
    color: #fff !important;
}

/* ── Links ────────────────────────────────────────────── */
a { color: #155fb5; }
a:hover { color: #0f1b4c; }

/* ── Badge / Pill ─────────────────────────────────────── */
.badge.bg-primary,
.badge-primary {
    background-color: #155fb5 !important;
}

/* ── Progress bars / Spinners ────────────────────────── */
.bg-primary     { background-color: #155fb5 !important; }
.text-primary   { color:            #155fb5 !important; }
.border-primary { border-color:     #155fb5 !important; }

/* ── Form focus ring ─────────────────────────────────── */
.form-control:focus,
.form-select:focus {
    border-color: #155fb5 !important;
    box-shadow:   0 0 0 .2rem rgba(21,95,181,.2) !important;
}

/* ── Pagination ──────────────────────────────────────── */
.page-item.active .page-link {
    background-color: #0f1b4c !important;
    border-color:     #0f1b4c !important;
}
.page-link { color: #0f1b4c !important; }

/* ── Nav tabs active ─────────────────────────────────── */
.nav-link.active,
.nav-tabs .nav-link.active {
    color: #155fb5 !important;
    border-bottom-color: #155fb5 !important;
}

/* ── Soft Buttons ────────────────────────────────────── */
.btn-soft-primary {
    background-color: rgba(21,95,181,.1) !important;
    color: #155fb5 !important;
    border-color: transparent !important;
}
.btn-soft-primary:hover {
    background-color: #155fb5 !important;
    color: #fff !important;
}
.btn-soft-success {
    background-color: rgba(52,195,143,.1) !important;
    color: #34c38f !important;
    border-color: transparent !important;
}
.btn-soft-success:hover {
    background-color: #34c38f !important;
    color: #fff !important;
}

/* ── Text selection ──────────────────────────────────── */
::selection {
    background: rgba(21,95,181,.15);
}
