/* ======================================
   IFSEO BRAND SYSTEM (BLUE DOMINANT)
====================================== */

:root {

    /* PRIMARY – Trust Blue */
    --bs-primary: #1E40AF;
    --bs-primary-rgb: 30, 64, 175;

    /* SUCCESS – Only for success messages */
    --bs-success: #10B981;
    --bs-success-rgb: 16, 185, 129;

    /* WARNING – Amber */
    --bs-warning: #F59E0B;
    --bs-warning-rgb: 245, 158, 11;

    --bs-danger: #DC2626;

    --bs-link-color: #1E40AF;
    --bs-link-hover-color: #1E3A8A;
}

/* ======================================
   FORCE PRIMARY TO BLUE
====================================== */

.btn-primary,
.btn-success {
    background-color: #1E40AF !important;
    border-color: #1E40AF !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-success:hover {
    background-color: #1E3A8A !important;
    border-color: #1E3A8A !important;
}

/* Remove green text */
.text-success {
    color: #1E40AF !important;
}

/* Remove green badges */
.badge-success,
.badge.bg-success {
    background-color: #1E40AF !important;
    color: #fff !important;
}

/* Remove green backgrounds except real success alerts */
.bg-success:not(.alert-success) {
    background-color: #1E40AF !important;
}

/* Pricing checkmarks */
.text-success i,
.fa-check.text-success {
    color: #1E40AF !important;
}

/* Sidebar active */
.nav-link.active {
    background: rgba(30, 64, 175, 0.08) !important;
    color: #1E40AF !important;
    border-left: 3px solid #1E40AF !important;
}

/* Pills */
.nav-pills .nav-link.active {
    background-color: #1E40AF !important;
}

/* Form controls */
.form-check-input:checked {
    background-color: #1E40AF !important;
    border-color: #1E40AF !important;
}

.form-control:focus {
    border-color: #1E40AF !important;
    box-shadow: 0 0 0 0.2rem rgba(30, 64, 175, 0.15) !important;
}

/* ======================================
   SUCCESS ONLY (REAL SUCCESS STATES)
====================================== */

.alert-success {
    background-color: #10B981 !important;
    border-color: #10B981 !important;
    color: #fff !important;
}

/* Wallet / Profit */
.wallet-balance,
.revenue-positive {
    color: #10B981 !important;
}

/* ======================================
   AI ELECTRIC VIOLET
====================================== */

.ai-highlight,
.badge-ai,
.bg-ai {
    background-color: #7C3AED !important;
    color: #fff !important;
}

.text-ai {
    color: #7C3AED !important;
}

/* ======================================
   AMBER CTA
====================================== */

.btn-amber,
.btn-topup {
    background-color: #F59E0B !important;
    border-color: #F59E0B !important;
    color: #fff !important;
}

.btn-amber:hover {
    background-color: #D97706 !important;
    border-color: #D97706 !important;
}