.mx-client-quick-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
  margin:18px 0 24px;
}

.mx-client-quick-card{
  background:#ffffff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  padding:18px;
  text-decoration:none!important;
  color:#111827!important;
  box-shadow:0 12px 32px rgba(15,23,42,.06);
  transition:.16s ease;
}

.mx-client-quick-card:hover{
  transform:translateY(-2px);
  border-color:#fecdd3;
  box-shadow:0 18px 44px rgba(237,28,36,.10);
}

.mx-client-quick-card span{
  display:flex;
  width:42px;
  height:42px;
  border-radius:50%;
  align-items:center;
  justify-content:center;
  border:1.5px solid #111827;
  color:#ed1c24;
  font-weight:950;
  margin-bottom:12px;
}

.mx-client-quick-card strong{
  display:block;
  font-size:17px;
  margin-bottom:5px;
}

.mx-client-quick-card small{
  color:#64748b;
  line-height:1.45;
  font-weight:700;
}

body .sidebar a[href="/dashboard/services/"],
body .sidebar a[href="/dashboard/order-status/"]{
  background:linear-gradient(135deg,#ed1c24,#b90f1d)!important;
  color:#ffffff!important;
}

@media(max-width:1000px){
  .mx-client-quick-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media(max-width:620px){
  .mx-client-quick-grid{
    grid-template-columns:1fr;
  }
}
