/* Dashboard base */
.dashboard {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: calc(100% - 48px);
  height: auto;
  overflow: visible;
  margin-top: 48px;
}


.dash-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.dash-title {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
}

.day-summary {
  text-align: center;
  display: grid;
  gap: 0;
  padding: 0px 0 4px;
  justify-items: center;
  flex-shrink: 0;
}

.day-summary__date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 10px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  position: relative;
  justify-content: center;
  color: #1b1b1b;
}

.day-summary__date input[type="date"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  color: #1B1B1B;
}

.day-summary__stats {
  display: grid;
  gap: 4px;
}

.day-summary__count {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
}

.day-summary__income {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
}

.dash-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.dash-item {
  background: #ffffff;
  border: 1px solid #e7edf7;
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
}

.dash-item__date {
  font-size: 13px;
  color: #6b7280;
  margin-bottom: 4px;
}

.dash-item__client {
  font-weight: 700;
  color: #111827;
}

.dash-empty {
  text-align: center;
  color: #6b7280;
  padding: 20px 0;
}
