:root {
  --sidebar-width: 240px;
  --brand-red: #d11a2a;
  --brand-black: #0b0b0f;
  --brand-white: #ffffff;
  --surface: #ffffff;
  --bg: #f3f4f6;
  --text: #111827;
  --muted: #6b7280;
  --border: rgba(17, 24, 39, 0.10);
}

body {
  background: #f6f7fb;
}

body.app {
  margin: 0;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: radial-gradient(80% 60% at 20% 0%, rgba(209, 26, 42, 0.10) 0%, transparent 60%),
    radial-gradient(70% 50% at 100% 20%, rgba(17, 24, 39, 0.08) 0%, transparent 55%),
    var(--bg);
}

.app-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 14px 14px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.app-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.app-avatar {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  object-fit: cover;
  border: 1px solid var(--border);
  background: var(--surface);
}

.app-avatar--placeholder {
  background: linear-gradient(135deg, var(--brand-black) 0%, var(--brand-red) 100%);
}

.app-header-text {
  min-width: 0;
}

.app-bizname {
  font-weight: 800;
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-pagetitle {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.app-header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.app-iconbtn {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-black);
  text-decoration: none;
  border: 1px solid var(--border);
  background: var(--surface);
}

.app-iconbtn:active {
  transform: translateY(1px);
}

.app-main {
  flex: 1;
  padding: 14px 14px 86px;
}

.app-container {
  max-width: 520px;
  margin: 0 auto;
}

.app-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  width: min(520px, calc(100% - 24px));
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr 72px 1fr 1fr;
  align-items: center;
  gap: 6px;
  z-index: 30;
}

.app-navitem {
  color: var(--muted);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  padding: 8px 6px;
  border-radius: 14px;
}

.app-navitem i {
  font-size: 16px;
}

.app-navitem.is-active {
  color: var(--brand-black);
  background: rgba(17, 24, 39, 0.06);
}

.app-fab {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--brand-black);
  color: var(--brand-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin: 0 auto;
  border: 1px solid rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.app-fab i {
  font-size: 18px;
}

.app-fab:active {
  transform: translateY(1px);
}

.app-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 8px 18px rgba(17, 24, 39, 0.06);
}

.app-card + .app-card {
  margin-top: 12px;
}

.app-card-header {
  padding: 14px 14px 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.app-card-title {
  font-size: 14px;
  font-weight: 800;
  color: var(--muted);
}

.app-card-body {
  padding: 14px;
}

.app-money {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.app-subtext {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.app-chiprow {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.app-chiprow::-webkit-scrollbar {
  height: 6px;
}

.app-chiprow::-webkit-scrollbar-thumb {
  background: rgba(17, 24, 39, 0.10);
  border-radius: 999px;
}

.app-mini {
  min-width: 150px;
  flex: 0 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 12px;
}

.app-mini-title {
  font-size: 12px;
  font-weight: 800;
  color: var(--muted);
}

.app-mini-value {
  font-size: 18px;
  font-weight: 900;
  margin-top: 4px;
}

.app-mini-accent {
  width: 34px;
  height: 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  background: rgba(209, 26, 42, 0.12);
  color: var(--brand-red);
}

.app-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.app-listitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.app-listleft {
  min-width: 0;
}

.app-listtitle {
  font-weight: 900;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.app-listmeta {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  margin-top: 2px;
}

.app-listright {
  text-align: right;
  flex: 0 0 auto;
}

.app-listamount {
  font-weight: 900;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  border: 1px solid var(--border);
  background: rgba(17, 24, 39, 0.04);
  color: var(--brand-black);
}

.app-badge--danger {
  background: rgba(209, 26, 42, 0.10);
  border-color: rgba(209, 26, 42, 0.22);
  color: var(--brand-red);
}

.app-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--brand-black);
  text-decoration: none;
  font-weight: 900;
}

.app-btn--primary {
  background: var(--brand-black);
  color: var(--brand-white);
  border-color: rgba(0, 0, 0, 0.2);
}

.app-btn--danger {
  background: var(--brand-red);
  color: var(--brand-white);
  border-color: rgba(209, 26, 42, 0.25);
}

.app-btn--block {
  width: 100%;
}

.app-toolbar {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.app-toolbar h4,
.app-toolbar h5,
.app-toolbar h6 {
  margin: 0;
  font-weight: 900;
}

.app-form .form-control,
.app-form .form-select {
  border-radius: 14px;
  border-color: var(--border);
}

.app-form .btn {
  border-radius: 14px;
}

body.auth {
  margin: 0;
  min-height: 100vh;
  font-family: "Nunito", sans-serif;
  background: radial-gradient(70% 55% at 50% 0%, rgba(209, 26, 42, 0.18) 0%, transparent 60%),
    radial-gradient(70% 55% at 100% 30%, rgba(17, 24, 39, 0.18) 0%, transparent 55%),
    #0b0b0f;
  color: #ffffff;
}

.auth-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.auth-card {
  width: min(420px, 100%);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 18px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.auth-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 6px 6px 14px;
  text-align: center;
}

.auth-logo {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.auth-logo--placeholder {
  background: linear-gradient(135deg, #0b0b0f 0%, #d11a2a 100%);
}

.auth-title {
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  font-size: 13px;
}

.auth-alert {
  margin: 0 6px 12px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(209, 26, 42, 0.35);
  background: rgba(209, 26, 42, 0.12);
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 6px 6px;
}

.auth-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.auth-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.72);
}

.auth-inputwrap {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.auth-inputwrap i {
  color: rgba(255, 255, 255, 0.62);
}

.auth-input {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-weight: 800;
  font-size: 15px;
}

.auth-input::placeholder {
  color: rgba(255, 255, 255, 0.45);
  font-weight: 700;
}

.auth-btn {
  border: 0;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 18px;
  font-weight: 900;
  font-size: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #d11a2a 0%, #ff4d4d 100%);
  box-shadow: 0 18px 35px rgba(209, 26, 42, 0.28);
}

.auth-btn:active {
  transform: translateY(1px);
}

.sidebar {
  width: var(--sidebar-width);
  min-height: 100vh;
  background: #ffffff;
}

.sidebar .nav-link {
  color: #334155;
  border-radius: 8px;
  margin: 2px 6px;
  padding: 10px 12px;
}

.sidebar .nav-link:hover {
  background: #f1f5f9;
}

@media (max-width: 992px) {
  .sidebar {
    width: 100%;
    min-height: auto;
  }
  .d-flex {
    flex-direction: column;
  }
}

body.dashv2 *,
body.dashv2 *::before,
body.dashv2 *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body.dashv2 nav {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
}

body.dashv2 nav ul,
body.dashv2 nav ul li {
  outline: 0;
}

body.dashv2 nav ul li a {
  text-decoration: none;
}

body.dashv2 {
  --dash-red: #d11a2a;
  --dash-black: #0b0b0f;
  --dash-white: #ffffff;
  --dash-bg: #f6f7fb;
  --dash-text: #111827;
  --dash-muted: #64748b;
  font-family: "Nunito", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #ffffff 0%, #f3f4f6 45%, #ffffff 100%);
}

body.dashv2 main {
  display: grid;
  grid-template-columns: 13% 87%;
  width: 100%;
  margin: 40px;
  background: rgb(254, 254, 254);
  box-shadow: 0 0.5px 0 1px rgba(255, 255, 255, 0.23) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.66) inset, 0 4px 16px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
  z-index: 10;
}

body.dashv2 .main-menu {
  overflow: hidden;
  background: var(--dash-black);
  padding-top: 10px;
  border-radius: 15px 0 0 15px;
  font-family: "Roboto", sans-serif;
}

body.dashv2 .main-menu h1 {
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  margin: 20px 0 30px;
  color: #fff;
  font-family: "Nunito", sans-serif;
}

body.dashv2 .logo {
  display: none;
}

body.dashv2 .nav-item {
  position: relative;
  display: block;
}

body.dashv2 .nav-item a {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  padding: 15px 0;
  margin-left: 10px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}

body.dashv2 .nav-item b:nth-child(1) {
  position: absolute;
  top: -15px;
  height: 15px;
  width: 100%;
  background: #fff;
  display: none;
}

body.dashv2 .nav-item b:nth-child(1)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 20px;
  background: var(--dash-black);
}

body.dashv2 .nav-item b:nth-child(2) {
  position: absolute;
  bottom: -15px;
  height: 15px;
  width: 100%;
  background: #fff;
  display: none;
}

body.dashv2 .nav-item b:nth-child(2)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-top-right-radius: 20px;
  background: var(--dash-black);
}

body.dashv2 .nav-item.active b:nth-child(1),
body.dashv2 .nav-item.active b:nth-child(2) {
  display: block;
}

body.dashv2 .nav-item.active a {
  text-decoration: none;
  color: var(--dash-text);
  background: rgb(254, 254, 254);
  box-shadow: inset 4px 0 0 var(--dash-red);
}

body.dashv2 .nav-icon {
  width: 60px;
  height: 20px;
  font-size: 20px;
  text-align: center;
}

body.dashv2 .nav-text {
  display: block;
  width: 120px;
  height: 20px;
}

body.dashv2 .content {
  display: grid;
  grid-template-columns: 75% 25%;
}

body.dashv2 .left-content {
  display: grid;
  grid-template-rows: 50% 50%;
  background: #f6f7fb;
  margin: 15px;
  padding: 20px;
  border-radius: 15px;
}

body.dashv2 .activities h1 {
  margin: 0 0 20px;
  font-size: 1.4rem;
  font-weight: 700;
}

body.dashv2 .activity-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(2, 150px);
  column-gap: 10px;
}

body.dashv2 .img-one {
  grid-area: 1 / 1 / 2 / 2;
}

body.dashv2 .img-two {
  grid-area: 2 / 1 / 3 / 2;
}

body.dashv2 .img-three {
  display: block;
  grid-area: 1 / 2 / 3 / 4;
}

body.dashv2 .img-four {
  grid-area: 1 / 4 / 2 / 5;
}

body.dashv2 .img-five {
  grid-area: 1 / 5 / 2 / 6;
}

body.dashv2 .img-six {
  display: block;
  grid-area: 2 / 4 / 3 / 6;
}

body.dashv2 .image-container {
  position: relative;
  margin-bottom: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  border-radius: 10px;
  overflow: hidden;
}

body.dashv2 .dashv2-vcard {
  background: linear-gradient(135deg, var(--dash-black) 0%, #1f2937 40%, var(--dash-red) 100%);
}

body.dashv2 .dashv2-vcard--cash {
  background: linear-gradient(135deg, var(--dash-black) 0%, #1f2937 40%, var(--dash-red) 100%);
}

body.dashv2 .dashv2-vcard--credit {
  background: linear-gradient(135deg, var(--dash-black) 0%, #111827 40%, #b91c1c 100%);
}

body.dashv2 .dashv2-vcard--payments {
  background: linear-gradient(135deg, var(--dash-black) 0%, #0f172a 40%, #ef4444 100%);
}

body.dashv2 .dashv2-vcard--debtors {
  background: linear-gradient(135deg, var(--dash-black) 0%, #111827 40%, #7f1d1d 100%);
}

body.dashv2 .dashv2-vcard--overdue {
  background: linear-gradient(135deg, var(--dash-black) 0%, #111827 30%, #dc2626 100%);
}

body.dashv2 .dashv2-vcard--due {
  background: linear-gradient(135deg, var(--dash-black) 0%, #111827 40%, #f87171 100%);
}

body.dashv2 .dashv2-vcard-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 44px;
  color: rgba(255, 255, 255, 0.24);
  z-index: 0;
  pointer-events: none;
}

body.dashv2 .image-container img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}

body.dashv2 .overlay {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    transparent,
    transparent,
    rgba(0, 0, 0, 0.55)
  );
  border-radius: 10px;
  transition: all 0.6s linear;
  padding: 10px;
  z-index: 1;
}

body.dashv2 .image-container:hover .overlay {
  opacity: 0;
}

body.dashv2 .metric {
  text-align: right;
  color: #fff;
}

body.dashv2 .metric-label {
  font-weight: 700;
  font-size: 0.95rem;
}

body.dashv2 .metric-value {
  font-weight: 800;
  font-size: 1.15rem;
}

body.dashv2 .left-bottom {
  display: grid;
  grid-template-columns: 55% 40%;
  gap: 40px;
}

body.dashv2 .weekly-schedule {
  display: flex;
  flex-direction: column;
}

body.dashv2 .weekly-schedule h1 {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 700;
}

body.dashv2 .calendar {
  margin-top: 10px;
}

body.dashv2 .day-and-activity {
  display: grid;
  grid-template-columns: 15% 60% 25%;
  align-items: center;
  border-radius: 14px;
  margin-bottom: 5px;
  color: #484d53;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
}

body.dashv2 .activity-one {
  background-color: rgba(209, 26, 42, 0.18);
  background-image: linear-gradient(
    240deg,
    rgba(209, 26, 42, 0.35) 0%,
    rgba(255, 255, 255, 0.95) 100%
  );
}

body.dashv2 .activity-two {
  background-color: rgba(17, 24, 39, 0.08);
  background-image: linear-gradient(240deg, rgba(17, 24, 39, 0.12) 0%, rgba(255, 255, 255, 0.95) 90%);
}

body.dashv2 .activity-three {
  background-color: rgba(209, 26, 42, 0.12);
  background-image: linear-gradient(240deg, rgba(209, 26, 42, 0.2) 0%, rgba(255, 255, 255, 0.95) 100%);
}

body.dashv2 .activity-four {
  background-color: rgba(17, 24, 39, 0.1);
  background-image: linear-gradient(240deg, rgba(17, 24, 39, 0.16) 0%, rgba(255, 255, 255, 0.95) 100%);
}

body.dashv2 .day {
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: translateY(-10px);
}

body.dashv2 .day h1 {
  font-size: 1.6rem;
  font-weight: 600;
}

body.dashv2 .day p {
  text-transform: uppercase;
  font-size: 0.9rem;
  font-weight: 600;
  transform: translateY(-3px);
}

body.dashv2 .activity {
  border-left: 3px solid #484d53;
}

body.dashv2 .activity h2 {
  margin-left: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 12px;
}

body.dashv2 .participants {
  display: flex;
  margin-left: 20px;
  align-items: center;
}

body.dashv2 .dashv2-balance {
  font-weight: 700;
  font-size: 0.95rem;
}

body.dashv2 .dashv2-btn {
  display: block;
  padding: 8px 18px;
  margin: 10px auto;
  font-size: 1rem;
  font-weight: 600;
  outline: none;
  text-decoration: none;
  color: #484b57;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 25px;
  cursor: pointer;
  text-align: center;
}

body.dashv2 .dashv2-btn:hover,
body.dashv2 .dashv2-btn:focus,
body.dashv2 .dashv2-btn:active,
body.dashv2 .dashv2-btn:visited {
  transition-timing-function: cubic-bezier(0.6, 4, 0.3, 0.8);
  animation: dashv2-gelatine 0.5s 1;
}

@keyframes dashv2-gelatine {
  0%,
  100% {
    transform: scale(1, 1);
  }
  25% {
    transform: scale(0.9, 1.1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  75% {
    transform: scale(0.95, 1.05);
  }
}

body.dashv2 .dashv2-empty {
  color: #64748b;
  font-size: 0.95rem;
  padding: 12px 0;
}

body.dashv2 .personal-bests {
  display: block;
}

body.dashv2 .personal-bests h1 {
  margin-top: 20px;
  font-size: 1.3rem;
  font-weight: 700;
}

body.dashv2 .personal-bests-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 150px);
  gap: 10px;
  margin-top: 10px;
}

body.dashv2 .best-item {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
}

body.dashv2 .box-one {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  grid-area: 1 / 1 / 2 / 3;
  background-color: rgba(209, 26, 42, 0.14);
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
}

body.dashv2 .box-two {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px;
  grid-area: 2 / 1 / 3 / 2;
  background-color: rgba(17, 24, 39, 0.08);
}

body.dashv2 .box-three {
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 12px;
  grid-area: 2 / 2 / 3 / 3;
  background-color: rgba(209, 26, 42, 0.1);
}

body.dashv2 .dashv2-icon {
  font-size: 44px;
  color: rgba(209, 26, 42, 0.9);
  margin-left: auto;
}

body.dashv2 .right-content {
  display: grid;
  grid-template-rows: 5% 20% 75%;
  background: #f6f7fb;
  margin: 15px 15px 15px 0;
  padding: 10px 0;
  border-radius: 15px;
}

body.dashv2 .user-info {
  display: grid;
  grid-template-columns: 30% 55% 15%;
  align-items: center;
  padding: 0 10px;
}

body.dashv2 .icon-container {
  display: flex;
  gap: 15px;
}

body.dashv2 .dashv2-icon-link {
  color: var(--dash-red);
}

body.dashv2 .user-info h4 {
  margin-left: 40px;
  font-weight: 800;
}

body.dashv2 .user-info img {
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
}

body.dashv2 .active-calories {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--dash-white);
  padding: 0 10px;
  margin: 15px 10px 0;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

body.dashv2 .active-calories h1 {
  margin-top: 10px;
  font-size: 1.2rem;
}

body.dashv2 .active-calories-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

body.dashv2 .calories-content p {
  font-size: 1rem;
  margin: 0;
}

body.dashv2 .calories-content p span {
  font-weight: 800;
}

body.dashv2 .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  padding: 10px 0;
}

body.dashv2 .box h2 {
  position: relative;
  text-align: center;
  font-size: 1.25rem;
  color: rgb(91, 95, 111);
  font-weight: 600;
}

body.dashv2 .box h2 small {
  font-size: 0.8rem;
  font-weight: 600;
}

body.dashv2 .circle {
  position: relative;
  width: 80px;
  aspect-ratio: 1/1;
  background: conic-gradient(
    from 0deg,
    var(--dash-red) 0%,
    var(--dash-red) 0% var(--i),
    #e5e7eb var(--i),
    #e5e7eb 100%
  );
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body.dashv2 .circle::before {
  content: "";
  position: absolute;
  inset: 10px;
  background-color: var(--dash-white);
  border-radius: 50%;
}

body.dashv2 .mobile-personal-bests {
  display: none;
}

body.dashv2 .friends-activity {
  display: flex;
  flex-direction: column;
}

body.dashv2 .friends-activity h1 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 15px 0 10px 15px;
}

body.dashv2 .dashv2-card-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

body.dashv2 .dashv2-card {
  background-color: #fff;
  margin: 0 10px;
  padding: 10px 12px;
  border-radius: 15px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 3px;
}

body.dashv2 .dashv2-card-two {
  display: block;
}

body.dashv2 .dashv2-card-user-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-bottom: 8px;
  gap: 8px;
}

body.dashv2 .dashv2-card-user-info h2 {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
}

body.dashv2 .dashv2-card-icon {
  font-size: 18px;
  color: var(--dash-red);
}

body.dashv2 .dashv2-card p {
  font-size: 0.95rem;
  margin: 0 0 6px;
  color: #334155;
}

body.dashv2 .dashv2-link {
  color: var(--dash-red);
  font-weight: 800;
  text-decoration: none;
}

body.dashv2 .dashv2-link:hover {
  text-decoration: underline;
}

@media (max-width: 1500px) {
  body.dashv2 main {
    grid-template-columns: 6% 94%;
  }

  body.dashv2 .main-menu h1 {
    display: none;
  }

  body.dashv2 .logo {
    display: block;
    width: 30px;
    margin: 20px auto;
  }

  body.dashv2 .nav-text {
    display: none;
  }

  body.dashv2 .content {
    grid-template-columns: 70% 30%;
  }
}

@media (max-width: 1310px) {
  body.dashv2 main {
    grid-template-columns: 8% 92%;
    margin: 30px;
  }

  body.dashv2 .content {
    grid-template-columns: 65% 35%;
  }

  body.dashv2 .day-and-activity {
    margin-bottom: 10px;
  }

  body.dashv2 .dashv2-btn {
    padding: 8px 14px;
    margin: 10px 0;
    margin-right: 10px;
    font-size: 0.95rem;
  }

  body.dashv2 .personal-bests-container {
    grid-template-rows: repeat(3, 98px);
    gap: 15px;
  }

  body.dashv2 .box-one {
    flex-direction: row;
    justify-content: space-between;
    grid-area: 1 / 1 / 2 / 3;
    padding: 10px;
    font-size: 0.9rem;
  }

  body.dashv2 .box-two {
    flex-direction: row;
    justify-content: space-between;
    grid-area: 2 / 1 / 3 / 3;
    align-items: center;
  }

  body.dashv2 .box-three {
    flex-direction: row;
    justify-content: space-between;
    grid-area: 3 / 1 / 4 / 3;
    align-items: center;
  }

  body.dashv2 .right-content {
    grid-template-rows: 4% 20% 76%;
    margin: 15px 15px 15px 0;
  }
}

@media (max-width: 1150px) {
  body.dashv2 .content {
    grid-template-columns: 60% 40%;
  }

  body.dashv2 .left-content {
    grid-template-rows: 50% 50%;
    margin: 15px;
    padding: 20px;
  }

  body.dashv2 .personal-bests-container {
    grid-template-rows: repeat(3, 70px);
    gap: 10px;
  }

  body.dashv2 .activity-container {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 150px);
  }

  body.dashv2 .img-one {
    grid-area: 1 / 1 / 2 / 2;
  }

  body.dashv2 .img-two {
    grid-area: 2 / 1 / 3 / 2;
  }

  body.dashv2 .img-three {
    display: none;
  }

  body.dashv2 .img-four {
    grid-area: 1 / 2 / 2 / 3;
  }

  body.dashv2 .img-five {
    grid-area: 1 / 3 / 2 / 4;
  }

  body.dashv2 .img-six {
    grid-area: 2 / 2 / 3 / 4;
  }

  body.dashv2 .left-bottom {
    grid-template-columns: 100%;
    gap: 0;
  }

  body.dashv2 .right-content {
    grid-template-rows: 4% 19% 36% 41%;
  }

  body.dashv2 .personal-bests {
    display: none;
  }

  body.dashv2 .mobile-personal-bests {
    display: block;
    margin: 0 10px;
  }

  body.dashv2 .mobile-personal-bests h1 {
    margin-top: 20px;
    font-size: 1.2rem;
  }

  body.dashv2 .dashv2-card-two {
    display: none;
  }
}

@media (max-width: 1050px) {
  body.dashv2 .right-content {
    grid-template-rows: 4% 19% 37% 40%;
  }
}

@media (max-width: 910px) {
  body.dashv2 main {
    grid-template-columns: 10% 90%;
    margin: 20px;
  }

  body.dashv2 .content {
    grid-template-columns: 55% 45%;
  }

  body.dashv2 .left-content {
    grid-template-rows: 50% 50%;
    padding: 30px 20px 20px;
  }

  body.dashv2 .activity-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 150px);
  }

  body.dashv2 .img-three {
    display: none;
  }

  body.dashv2 .img-five {
    grid-area: 2 / 2 / 3 / 3;
  }

  body.dashv2 .img-six {
    display: none;
  }
}

@media (max-width: 800px) {
  body.dashv2 .content {
    grid-template-columns: 52% 48%;
  }
}

@media (max-width: 700px) {
  body.dashv2 main {
    grid-template-columns: 15% 85%;
  }

  body.dashv2 .content {
    grid-template-columns: 100%;
    grid-template-rows: 45% 55%;
    grid-template-areas:
      "rightContent"
      "leftContent";
  }

  body.dashv2 .left-content {
    grid-area: leftContent;
    grid-template-rows: 45% 55%;
    padding: 10px 20px 10px;
  }

  body.dashv2 .right-content {
    grid-area: rightContent;
    grid-template-rows: 5% 40% 50%;
    margin: 15px 15px 0 15px;
    padding: 10px 0 0;
    gap: 15px;
  }

  body.dashv2 .activities,
  body.dashv2 .weekly-schedule {
    margin-top: 10px;
  }

  body.dashv2 .active-calories-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  body.dashv2 .friends-activity {
    display: none;
  }
}
