.dashboard-header {
  padding: 1.25rem 1.25rem 1rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(13, 110, 253, 0.10), rgba(32, 201, 151, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.dashboard-panel {
  border-radius: 1rem;
}

.dashboard-tile {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  height: 100%;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.dashboard-tile:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 110, 253, 0.25);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.08);
}

.dashboard-tile__icon {
  width: 42px;
  height: 42px;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13, 110, 253, 0.12);
  color: #0d6efd;
  flex: 0 0 auto;
}

.dashboard-tile__title {
  font-weight: 700;
  line-height: 1.2;
}

.dashboard-tile__desc {
  font-size: 0.92rem;
  color: rgba(33, 37, 41, 0.70);
}

.dashboard-tile__body {
  min-width: 0;
}

.dashboard-tile__chev {
  margin-left: auto;
  color: rgba(33, 37, 41, 0.45);
}

.dashboard-entity {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  color: inherit;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.dashboard-entity:hover {
  transform: translateY(-2px);
  border-color: rgba(32, 201, 151, 0.35);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.dashboard-entity__icon {
  width: 42px;
  height: 42px;
  border-radius: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(32, 201, 151, 0.12);
  color: #20c997;
  flex: 0 0 auto;
}

.dashboard-entity__body {
  min-width: 0;
}

.dashboard-entity__title {
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-entity__meta {
  font-size: 0.92rem;
  color: rgba(33, 37, 41, 0.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-entity__chev {
  margin-left: auto;
  color: rgba(33, 37, 41, 0.45);
}

