html,body { height:auto!important; margin:0; padding:0; }
.ds-wrap {
  display:flex;
  font-family:Inter,"Helvetica Neue",Arial,sans-serif;
  background:#f6f7fb;
  align-items:flex-start;
  min-height:100vh;
  padding-bottom:40px;
  box-sizing:border-box;
}

/* Sidebar */
.ds-sidebar {
  width:240px;
  background:#fff;
  padding:22px;
  border-right:1px solid #eef0f6;
  flex:0 0 240px;
  box-sizing:border-box;
}
.ds-sidebar .logo{font-weight:700;margin-bottom:18px;color:#3a1b66}
.ds-sidebar .menu{list-style:none;padding:0;margin:0}
.ds-sidebar .menu li{padding:12px 10px;color:#495057;border-radius:6px;margin-bottom:6px;cursor:pointer;transition:0.2s}
.ds-sidebar .menu li.active{background:#f5f0ff;color:#3a0f66;font-weight:600}
.ds-create-list{display:inline-block;background:#6a1b9a;color:#fff;padding:10px 12px;border-radius:6px;margin-top:14px;text-decoration:none;text-align:center;width:100%}

/* Main Content */
.ds-main{
  flex:1;
  padding:28px;
  box-sizing:border-box;
  min-width:0;
  overflow:visible;
}
.ds-main h2{font-size:24px;margin-bottom:24px;color:#1f1f1f}

/* Responsive grid row for top boxes */
.ds-row {
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
  margin-bottom:20px;
  align-items:stretch;
}

/* Cards */
.ds-card {
  background:#fff;
  border-radius:12px;
  padding:20px;
  box-shadow:0 1px 3px rgba(0,0,0,0.06);
  box-sizing:border-box;
}
.ds-balance {
  background:#3a1b66;
  color:#fff;
  padding:28px;
  border-radius:12px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.ds-balance .amount {font-size:28px;font-weight:700;margin-top:8px;line-height:1}
.ds-small {font-size:14px;color:#d6c7ff}

/* Chart */
.canvas-wrap {
  width:100%;
  height:180px;
  position:relative;
}

/* Table */
.ds-table {
  width:100%;
  border-collapse:collapse;
  background:#fff;
  border-radius:8px;
  overflow:hidden;
  table-layout:fixed;
}
.ds-table th,.ds-table td {
  padding:14px 16px;
  border-bottom:1px solid #f1f3f6;
  text-align:left;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}
.ds-table thead th {
  background:#fbfbfd;
  color:#6b6f76;
  font-weight:600;
}

/* Buttons */
.ds-btn {
  background:#6a1b9a;
  color:#fff;
  padding:8px 12px;
  border-radius:6px;
  border:0;
  cursor:pointer;
  text-decoration:none;
}

/* Responsive Breakpoints */
@media(max-width:1100px) {
  .ds-row { grid-template-columns:repeat(2, 1fr); }
}
@media(max-width:768px) {
  .ds-wrap { flex-direction:column; }
  .ds-sidebar {
    width:100%;
    border-right:none;
    border-bottom:1px solid #eee;
  }
  .ds-main { padding:18px; }
  .ds-row { grid-template-columns:1fr; }
  .ds-card { padding:16px; }
  .ds-balance { min-height:auto; }
  .ds-balance .amount { font-size:22px; }
  .canvas-wrap { height:220px; }
}
