.dashboard-section {
  margin-top: 24px;
  max-width: 100%;
  min-width: 0;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 900px;
}

.dashboard-card {
  display: block;
  padding: 20px;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  color: #111827;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.dashboard-card:hover {
  background: #f8fafc;
  border-color: #94a3b8;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  transform: translateY(-1px);
}

.dashboard-card h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
}

.dashboard-card p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
  line-height: 1.4;
}

.section-header {
  margin-bottom: 14px;
}

.section-header h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.section-header p {
  margin: 0;
  color: #64748b;
  font-size: 14px;
}

.billing-rate-table {
  width: auto;
  min-width: 0;
  background: #fff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  overflow: hidden;
}

.billing-rate-table th,
.billing-rate-table td {
  padding: 7px 8px;
  white-space: nowrap;
}

.billing-rate-table thead th,
.billing-rate-table tbody th {
  width: auto;
}

.billing-rate-table input[type="number"] {
  width: 44px;
  min-width: 44px;
  padding: 5px 6px;
  border: 1px solid #cbd5e1;
  border-radius: 5px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 13px;
  text-align: right;
  appearance: textfield;
  -moz-appearance: textfield;
}

.billing-rate-table input[type="number"]::-webkit-outer-spin-button,
.billing-rate-table input[type="number"]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.billing-rate-table input[type="number"]:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.12);
}