/* ==========================================================
   Company Brand Colors
========================================================== */
:root {
    --brand-blue: #0032A1;
    --brand-yellow: #FFB71B;
    --brand-green: #41693D;

    /* Optional shades */
    --brand-blue-light: #1d52c5;
    --brand-yellow-light: #ffd56b;
    --brand-green-light: #5a8b55;
}

.card-header-brand {
    background: linear-gradient(
        135deg,
        rgba(0, 50, 161, 0.07) 0%,     /* Subtle tint of Brand Blue */
        rgba(65, 105, 61, 0.07) 100%   /* Subtle tint of Brand Green */
    );
    color: var(--brand-blue);          /* Using your brand blue for the text color */
    border: none;
    font-weight: 600;                  /* Boost font-weight slightly for light backgrounds */
}
