.dashboard-drill-tile {
  cursor: pointer;
  position: relative;
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease;
}
.dashboard-drill-tile:hover,
.dashboard-drill-tile:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(42,120,214,.35);
  box-shadow: 0 6px 18px rgba(31,56,100,.08);
  outline: none;
}
.dashboard-drill-tile .drill-hint {
  margin-top: 8px;
  font-size: 10.5px;
  font-weight: 700;
  color: var(--series-1);
  opacity: .8;
}
.dashboard-drill-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11,11,11,.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.dashboard-drill-modal {
  width: min(1180px, 96vw);
  max-height: 88vh;
  background: var(--surface-1);
  border: 1px solid var(--gridline);
  border-radius: 14px;
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.dashboard-drill-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid var(--gridline);
}
.dashboard-drill-header h2 {
  margin: 0;
  font-size: 18px;
  color: var(--brand);
}
.dashboard-drill-header p {
  margin: 4px 0 0;
  color: var(--text-secondary);
  font-size: 12.5px;
  max-width: 820px;
}
.dashboard-drill-close {
  width: 34px;
  height: 34px;
  border: 1px solid var(--gridline);
  border-radius: 8px;
  background: #fff;
  color: var(--text-secondary);
  font-size: 22px;
  line-height: 1;
}
.dashboard-drill-summary {
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
  background: var(--page);
  border-bottom: 1px solid var(--gridline);
}
.dashboard-drill-table-wrap {
  overflow: auto;
  padding: 0 14px 8px;
  flex: 1;
}
.dashboard-drill-table {
  table-layout: auto !important;
  min-width: 760px !important;
}
.dashboard-drill-table thead th {
  position: sticky !important;
  top: 0 !important;
  z-index: 2;
  background: var(--surface-1);
}
.dashboard-drill-table td,
.dashboard-drill-table th {
  white-space: nowrap;
}
.dashboard-drill-table td:nth-child(2) {
  white-space: normal;
  min-width: 220px;
}
.drill-quote-row { cursor: pointer; }
.drill-quote-row:hover { background: #eef4fb !important; }
.dashboard-drill-modal > .hint {
  padding: 0 20px 14px;
  margin: 4px 0 0;
}
@media (max-width: 700px) {
  .dashboard-drill-overlay { padding: 8px; }
  .dashboard-drill-modal { width: 100%; max-height: 94vh; }
  .dashboard-drill-header { padding: 14px; }
}
