/* ===== Clean style for dashboard cards: remove outer white frame & paper icon, improve text contrast ===== */

/* kill white container/background from Bootstrap .card around la-card */
.la-card,
.card.la-card,
.la-card.card,
.la-card .card,
.la-card .card-body{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* ensure inner body looks like the only surface */
.la-card .body{
  margin: 0;               /* flush to parent */
  border-radius: 18px;     /* keep rounded */
}

/* hide any leading icons inside quick cards */
.la-card i,
.la-card .bi,
.la-card .icon,
.la-card .file-icon{
  display: none !important;
}

/* stronger text colors for readability */
.la-card .la-title{ color:#ffffff !important; text-shadow:0 1px 0 rgba(0,0,0,.15); }
.la-card .la-sub{ color:rgba(255,255,255,.92) !important; }
.la-card .la-badge{ color:#0b1b3a; background:#fff; }  /* keep CTA readable */