/* CUSTOMER SIDEBAR — STYLES (ajoute dans ton CSS global) */

.customer-card {
  background: linear-gradient(180deg, rgba(15,12,25,0.8), rgba(15,12,25,0.72));
  border: 1px solid rgba(199,125,255,0.1);
  box-shadow: 0 12px 34px rgba(0,0,0,0.45);
  border-radius: 12px;
  color: #e6def8;
}

.customer-card .avatar {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: linear-gradient(90deg, #ff6fb1, #c77dff);
  color: white;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(139,92,246,0.18);
}

.customer-card h5 {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 700;
}

.customer-card .text-muted {
  color: rgba(255,255,255,0.68) !important;
}

.customer-card .nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: .75rem;
  color: rgba(214,204,236,0.9);
  background: transparent;
  padding: 10px 12px;
  border-radius: 10px;
  transition: background .18s ease, transform .12s ease, color .12s ease;
  border: none;
}

.customer-card .nav-link .icon {
  width: 18px;
  height: 18px;
  opacity: .95;
  flex-shrink: 0;
}

.customer-card .nav-link:hover,
.customer-card .nav-link:focus {
  background: rgba(199,125,255,0.06);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

.customer-card .nav-link.active {
  background: linear-gradient(90deg, rgba(139,92,246,0.12), rgba(236,72,153,0.06));
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(199,125,255,0.06);
  font-weight: 700;
}

.customer-card .badge {
  background: linear-gradient(90deg, #ff6fb1, #c77dff);
  color: #fff;
  padding: .25rem .5rem;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 700;
  min-width: 32px;
  text-align: center;
}

.customer-card .badge.money {
  background: transparent;
  border: 1px solid rgba(199,125,255,0.18);
  color: #ffd8f0;
  padding: .2rem .55rem;
}

.customer-card .btn-ghost {
  background: transparent;
  border: none;
  color: rgba(214,204,236,0.9);
  padding: 10px 12px;
  width: 100%;
  text-align: left;
  border-radius: 10px;
}

.customer-card .btn-ghost:hover {
  background: rgba(199,125,255,0.06);
  color: #fff;
  transform: translateY(-1px);
}

/* responsive */
@media (max-width: 767px) {
  .customer-card {
    border-radius: 8px;
    padding: 1rem;
  }
}