.dashboard-metric-button {
  width: 100%;
  border: 1px solid var(--line);
  cursor: pointer;
  text-align: left;
}

.dashboard-metric-button:hover {
  border-color: rgba(31, 113, 83, 0.36);
  background: rgba(239, 247, 244, 0.9);
}

.dashboard-quick-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
  padding: 12px;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 14px;
}

.dashboard-grid > section {
  min-width: 0;
}

.dashboard-item.warning {
  border-color: rgba(197, 120, 33, 0.35);
  background: #fff8ed;
}

.dashboard-item.info {
  border-color: rgba(32, 113, 91, 0.32);
  background: #edf7f3;
}

.dashboard-item-actions {
  display: flex;
  justify-content: flex-start;
  margin-top: 6px;
}

.dashboard-section-actions {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 10px;
}

.dashboard-list-inner {
  display: grid;
  gap: 10px;
}
