.dashboard2-card {
  background:#f3f3f3;
  border-radius: 18px;
  padding: 1.25rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: space-between;
}
.dashboard2-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard2-card-title-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.dashboard2-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e4e4e4;
  color: #4d4d4d;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.dashboard2-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #3f3f3f;
}
.dashboard2-card-subtitle {
  font-size: 0.8rem;
  font-weight: 500;
  color: #6a6a6a;
  margin-top: 0.1rem;
}
.dashboard2-card-value {
  font-size: 2rem;
  font-weight: 700;
  color: #303030;
}
.dashboard2-chart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0;
  height: 160px;
}
.dashboard2-chart canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: 130px;
  max-height: 130px;
  aspect-ratio: 1/1;
}
.dashboard2-chart-value {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  font-weight: 600;
  color: #333;
}
.dashboard2-panel {
  background: linear-gradient(180deg, #f7f7f7 0%, #f2f2f2 100%);
  border-radius: 18px;
  padding: 1.5rem 1.75rem;
}
.dashboard2-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard2-panel-subtitle {
  font-size: 0.75rem;
  font-weight: 500;
  color: #6a6a6a;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.dashboard2-line-chart {
  margin-top: 1rem;
  height: 210px;
}
.dashboard2-line-chart canvas {
  width: 100% !important;
  height: 100% !important;
}
