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

.plan-features li::before {
  content: none;
}

.plan-feature-dot {
  display: block;
  width: 6px;
  height: 6px;
  margin-top: 0.4rem;
  flex-shrink: 0;
  border-radius: 50%;
}
.plan-feature-dot--blue {
  background: #4a6fa5;
}
.plan-feature-dot--green {
  background: #4a7c59;
}
.plan-feature-dot--purple {
  background: #6b5b95;
}
.plan-feature-dot--muted {
  background: #aaaaaa;
  opacity: 0.5;
}

.plan-card {
  position: relative;
}
.plan-card:hover {
  transform: translateY(-1px);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.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;
}
