/* Dashboard specific styles */

.main-content{
  margin-left: 260px;
  padding-bottom: 2rem;
}

@media (max-width: 992px) {
  .main-content{ margin-left: 0; }
}

/* Dashboard cards */
.dashboard-stat{
  position: relative;
  overflow: hidden;
}

.dashboard-stat::before{
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at 20% 0%, rgba(13,110,253,.14), transparent 55%);
  pointer-events: none;
}

.dashboard-stat .card-body{
  position: relative;
}

/* Better chart container */
.dashboard-chart{
  border-radius: 16px;
  background: rgba(13,110,253,.04);
  border: 1px solid rgba(13,110,253,.12);
  padding: 12px;
}

/* Table look inside dashboard pages */
.table td, .table th{
  vertical-align: middle;
}



