/* ============================================================
 * TIER 15 — Door Side Indicator
 * Prefix: t15-
 * ============================================================ */

/* ============ DOOR SIDE PILL (Result Screen) ============ */
.t15-doorside {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 8px 0 4px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  animation: t15-fadeIn 0.3s ease-out;
}

@keyframes t15-fadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .t15-doorside {
    animation: none;
  }
}

/* Arrow icon */
.t15-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(76, 154, 255, 0.12);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.t15-arrow--left {
  transform: scaleX(1);
}

.t15-arrow--right {
  transform: scaleX(-1);
}

.t15-arrow--both {
  background: rgba(255, 171, 0, 0.12);
  color: var(--amber);
}

/* Text label */
.t15-label {
  white-space: nowrap;
}

.t15-label strong {
  color: var(--text);
  font-weight: 600;
}

/* ============ DOOR SIDE IN EXITS VIEW ============ */
.t15-doorside-exits {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  background: rgba(76, 154, 255, 0.06);
  border: 1px solid rgba(76, 154, 255, 0.12);
  border-radius: 14px;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-left: 8px;
  vertical-align: middle;
}

.t15-doorside-exits .t15-arrow {
  width: 14px;
  height: 14px;
  font-size: 9px;
}

.t15-doorside-exits .t15-label strong {
  font-weight: 600;
  color: var(--text);
}
