/* ==========================================================================
   역천록 (逆天錄) - 고대 전송진 모달 스타일시트 (teleportModal.css)
   ========================================================================== */

.teleport-modal-card {
  max-width: 480px;
  width: 90%;
  background: #0f172a;
  border: 1px solid #3b82f6;
  border-radius: 8px;
  box-shadow: 0 0 25px rgba(37, 99, 235, 0.3);
  padding: 1.25rem;
}

.teleport-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 0.85rem;
}

.teleport-resource-status {
  display: flex;
  justify-content: space-between;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 0.5rem 0.75rem;
  font-size: 0.82rem;
  margin-bottom: 1rem;
}

.teleport-dest-list,
.teleport-destinations-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.teleport-dest-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 6px;
  padding: 0.65rem 0.85rem;
  transition: border-color 0.15s;
}

.teleport-dest-item:hover {
  border-color: #60a5fa;
}

.teleport-dest-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.teleport-dest-region {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.btn-teleport-warp {
  background: linear-gradient(135deg, #1d4ed8, #2563eb);
  border: 1px solid #60a5fa;
  color: #fff;
  border-radius: 4px;
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
}

.btn-teleport-warp:hover:not(:disabled) {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.4);
}

.btn-teleport-warp.disabled,
.btn-teleport-warp:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: #334155;
  border-color: #475569;
}
