/* Final signal table styling.
 *
 * Layer 08 of the stylesheet. ORDER IS SIGNIFICANT: this file's rules
 * are overridden by every later layer and override every earlier one, exactly as
 * when they were one file. See docs/frontend-architecture.md. */

/* ===== FINAL TABLE STYLE ===== */

.signal-table {
  width: 100%;
  border-spacing: 0 10px;
  border-collapse: separate;
}

.signal-table th {
  text-align: left;
  color: #7f8c96;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .05em;

  padding: 14px;
}

.signal-table td {
  padding: 20px 14px !important;
  vertical-align: middle;
}

.signal-table tbody tr {
  background: rgba(255,255,255,.02);

  transition:
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.signal-table tbody tr:hover {
  background: rgba(0,255,153,.10) !important;

  transform: translateY(-1px);

  box-shadow:
    inset 3px 0 0 #00ff99,
    0 10px 24px rgba(0,0,0,.25);
}

.signal-table tbody tr td:first-child {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}

.signal-table tbody tr td:last-child {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}
