/* Residual rules — pseudo-elements and complex selectors that Tailwind cannot express */

.plan-features li::before {
  content: '—';
  margin-right: 8px;
  color: #AAAAAA;
}

.auth-divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}
.auth-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #E5E3DE;
}
.auth-divider span {
  background: #FFFFFF;
  padding: 0 16px;
  position: relative;
  font-size: 11px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.org-switcher-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23888'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 28px;
}

.live-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4A7C59;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #F0EFEB; }
