* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}

a {
  text-decoration: none;
}

body {
  max-width: 450px;
  margin: 0px auto;
  background: #f5f5f5;
  font-family: Arial, sans-serif;
}

.topbar {
  background: #000;
  color: #fff;
  font-variant: all-small-caps;
  padding: 22px 10px 64px 10px;
}

.section {
  margin-top: -28px;
  padding: 15px;
}

.section-secondary {
  background: #f8f8f8;
  border-radius: 30px 30px 0 0;
  text-align: center;
  padding-bottom: 48px;
}

.row-stats {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.stat-box {
  flex: 1;
  padding: 8px 0px;
  border-radius: 10px;
  text-align: center;
  font-variant: all-small-caps;
  font-weight: 800;
}

.section-report {
  background: #fff;
  border-radius: 30px 30px 0 0;
  margin-top: -28px;
  padding-bottom: 50px;
}

.report-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 10px;
}

.report-card {
  padding: 15px;
  border-radius: 10px;
  font-variant: all-small-caps;
  font-weight: 800;
  font-size: 18px;
}

.report-card span {
  font-size: 22px;
}

.bg-purple {
  background: #f8e7fb;
}

.bg-blue {
  background: #e3f9ff;
}

.bg-yellow {
  background: #fefdc4;
}

.bg-green {
  background: #ebf9eb;
}

.bg-dark {
  background: #252525;
}

.balance-main {
  font-size: 28px;
  font-weight: 800;
}

.balance-sub {
  font-size: 15px;
  font-weight: 800;
  color: #555;
}

.report-title {
  font-size: 28px;
  font-weight: 800;
  font-variant: all-small-caps;
}

.section-week {
  background: #f8f8f8;
  border-radius: 30px 30px 0 0;
  margin-top: -28px;
  padding: 15px;
}

.week-title {
  font-size: 28px;
  font-weight: 800;
  font-variant: all-small-caps;
  padding: 5px 0px 10px 0px;
}

.day-card {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.day-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.day-earn {
  font-weight: 800;
  font-size: 14px;
}

.day-earn-sub {
  font-size: 12px;
  color: #555;
  font-weight: 800;
}

.day-date {
  background: #bff2cb;
  color: #000;
  font-variant: all-small-caps;
  font-weight: 600;
  padding: 4px 6px 5px 6px;
  border-radius: 4px;
  font-size: 14px;
}

.up-badge, .down-badge {
  min-width: 50px;
  text-align: center;
  padding: 5px;
  border-radius: 4px;
  font-size: 12px;
  font-variant: all-small-caps;
  font-weight: bold;
}

.up-badge {
  background: #d4f8d4;
  color: #0a8a0a;
}

.down-badge {
  background: #ffd6d6;
  color: #c40000;
}