/* Tiles de dashboard */
.tile {
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  background: #fff;
  padding: 18px 16px;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
  box-shadow: 0 8px 20px rgba(13,110,253,.04);
  height: 100%;
}
.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(13,110,253,.10);
  border-color: rgba(13,110,253,.25);
}
.tile .icon-wrap {
  width: 40px; height: 40px;
  display:flex; align-items:center; justify-content:center;
  border-radius: 12px;
  background: rgba(13,110,253,.10);
  font-size: 20px;
}
.tile h6 {
  font-weight: 700; margin: 8px 0 2px 0; color:#0a0a0a;
}
.tile p {
  margin: 0; color: #6c757d; font-size: .94rem;
}
.tile.disabled { opacity:.55; pointer-events:none; filter: grayscale(20%); }
.tile .chev { margin-left:auto; font-size: 18px; opacity:.6; }
